@extends('blog::adminLte.layouts.master') @section('pageTitle') {{ __('blog::view.comment_list') }} @endsection @section('content')
{{-- search table --}} @include('adminLte.components.modules.datatable.search', ['table_id' => $table_id])
{{-- data table length --}} @include('adminLte.components.modules.datatable.datatable_length', ['table_id' => $table_id]) {{-- btn reload table --}} @include('adminLte.components.modules.datatable.reload', ['table_id' => $table_id]) {{-- Start Custom Filters --}} @include('blog::adminLte.pages.comments.table.filters.approval', ['table_id' => $table_id, 'filters' => $filters]) {{-- End Custom Filters --}} @can('export-table-comments') @include('adminLte.components.modules.datatable.export', ['table_id' => $table_id, 'btn_exports' => $btn_exports]) @endcan
@section('more-actions') @endsection @include('adminLte.components.modules.datatable.columns.checkbox-actions', [ 'table_id' => $table_id, 'permission' => 'delete-comments', 'url' => fr_route('comments.multi-destroy'), 'callback' => 'reload-table', 'model_name' => __('blog::view.selected_comments') ])
{{ $dataTable->table() }}
@endsection {{-- Inject styles --}} @section('styles') @endsection {{-- Inject Scripts --}} @section('scripts') {{ $dataTable->scripts() }} @endsection