32 lines
1.0 KiB
PHP
32 lines
1.0 KiB
PHP
@extends('vuexy-admin::layouts.vuexy.layoutMaster')
|
|
|
|
@section('title', 'Comentarios del Blog')
|
|
|
|
@section('vendor-style')
|
|
@vite([
|
|
'vendor/koneko/laravel-vuexy-admin/resources/assets/vendor/libs/select2/select2.scss',
|
|
'vendor/koneko/laravel-vuexy-admin/resources/assets/vendor/libs/bootstrap-table/bootstrap-table.scss',
|
|
'vendor/koneko/laravel-vuexy-admin/resources/assets/vendor/fonts/bootstrap-icons.scss',
|
|
])
|
|
@endsection
|
|
|
|
@section('vendor-script')
|
|
@vite([
|
|
'vendor/koneko/laravel-vuexy-admin/resources/assets/vendor/libs/select2/select2.js',
|
|
])
|
|
@endsection
|
|
|
|
@push('page-script')
|
|
@vite([
|
|
'vendor/koneko/laravel-vuexy-admin/resources/assets/js/bootstrap-table/bootstrapTableManager.js',
|
|
'vendor/koneko/laravel-vuexy-admin/resources/assets/js/forms/formConvasHelper.js',
|
|
])
|
|
@endpush
|
|
|
|
@section('content')
|
|
@livewire('vuexy-website-admin::blog-comments-table')
|
|
<?php /*
|
|
@livewire('vuexy-website-admin::blog-comment-offcanvas-form')
|
|
*/ ?>
|
|
@endsection
|