@extends('admins.layouts.index') @section('content')

{{__("Listing Information")}}

# {{__('Image')}} {{__('Title')}} {{__('Description')}} {{__('Status')}} {{__('Updated At')}} {{__('Action')}}
{{__('Edit')}} | {{__('View')}} | {{__('Delete')}}
@endsection @section('script') $(function () { var table = $('.datatable').DataTable({ processing: true, serverSide: true, dom: 'Bfrtip', ajax: window.location.href, buttons: [{ extend: 'copy', exportOptions: { columns: 'th:not(:last-child)' } },{ extend: 'csv', exportOptions: { columns: 'th:not(:last-child)' } },{ extend: 'excel', exportOptions: { columns: 'th:not(:last-child)' } },{ extend: 'pdf', exportOptions: { columns: 'th:not(:last-child)' } },{ extend: 'print', exportOptions: { columns: 'th:not(:last-child)' } }], columns: [ {data: 'DT_RowIndex', name: 'DT_RowIndex'}, {data: 'image_path', name: 'image_path', orderable: false, searchable: false}, {data: 'title', name: 'title'}, {data: 'description', name: 'description'}, {data: 'status', name: 'status'}, {data: 'updated_at', name: 'updated_at'}, {data: 'action', name: 'action', orderable: false, searchable: false}, ] }); }); @endsection