@extends("_admin.adminapp")
@section('header')
@include('_admin._particles._datatable.head_scripts')
@endsection
@section("content")
@endsection
@section('footer')
@include('_admin._particles._datatable.footer_scripts', [
'order_count' => 5,
'columns' => [
[
'sType'=>'html',
'data'=>'selection',
'name'=>'selection',
'orderable'=>false,
'searchable'=>false,
'width'=>'2%'
],
[
'sType'=>'html',
'data'=>'comment',
'name'=>'comment',
'orderable'=>false,
'searchable'=>false,
'width'=>'25%'
],
[
'sType'=>'html',
'data'=>'post',
'name'=>'post',
'orderable'=>false,
'searchable'=>true,
'width'=>'25%'
],
[
'data'=>'user',
'name'=>'user',
'orderable'=>false,
'searchable'=>false,
'width'=>'15%'
],
[
'data'=>'approve',
'name'=>'approve',
'orderable'=>false,
'searchable'=>false,
'width'=>'13%'
],
[
'data'=>'created_at',
'name'=>'created_at',
'orderable'=>true,
'searchable'=>false,
'width'=>'10%'
],
[
'data'=>'action',
'name'=>'action',
'orderable'=>false,
'searchable'=>false,
'width'=>'10%'
]
],
]);
@endsection