@extends("_admin.adminapp") @section('header') @include('_admin._particles._datatable.head_scripts') @endsection @section("content")

@if(request()->query('only')=='unapprove') {!! trans('admin.Unapproved', ['type' => $title ]) !!} @elseif(request()->query('only')=='featured') {!! trans("admin.FeaturesPosts", ['type' => $title]) !!} @elseif(request()->query('only')=='deleted') {!! trans("admin.Trash", ['type' => $title]) !!} @else {{ $title }} @endif

@if(get_multilanguage_enabled()) @endif @if($type=='features') @else @endif
{!! trans("admin.Preview") !!} {!! trans("admin.Title") !!} {!! trans("admin.User") !!} {!! trans("admin.Status") !!}{!! trans("v4.post_language") !!}{!! trans("admin.FeaturedDate") !!}{!! trans("admin.Dates") !!}{!! trans("admin.Actions") !!}
@endsection @section('footer') @include('_admin._particles._datatable.footer_scripts', [ 'order_count' => get_multilanguage_enabled() ? 6 : 5, 'columns' => [ [ 'sType' =>'html', 'data' => 'selection', 'name' =>'selection', 'orderable' =>false, 'searchable' =>false, "width" =>"2%" ], [ 'sType' =>'html', 'data' => 'thumb', 'name' =>'thumb', 'orderable' =>false, 'searchable' =>false, "width" =>"2%" ], [ 'sType' =>'html', 'data' => 'title', 'name' =>'title', 'orderable' =>false, 'searchable' =>true, "width" =>"33%" ], [ 'sType' =>'html', 'data' => 'user', 'name' =>'user', 'orderable' =>false, 'searchable' =>false, "width" =>"15%" ], [ 'sType' =>'html', 'data' => 'approve', 'name' =>'approve', 'orderable' =>false, 'searchable' =>false, "width" =>"13%" ], get_multilanguage_enabled() ? [ 'sType' =>'html', 'data' => 'language', 'name' =>'language', 'orderable' =>true, 'searchable' =>false, "width" =>"10%" ] : null, $type == 'features' ? [ 'sType' =>'html', 'data' => 'featured_at', 'name' =>'featured_at', 'orderable' =>true, 'searchable' =>false, "width" =>"10%" ] : [ 'sType' =>'html', 'data' => 'published_at', 'name' =>'published_at', 'orderable' =>true, 'searchable' =>false, "width" =>"10%" ], [ 'sType' =>'html', 'data' => 'action', 'name' =>'action', 'orderable' =>false, 'searchable' =>false, "width" =>"10%" ], ], ] ) @endsection