Doing nothing for others is the undoing of ourselves. - Horace Mann
Id | Name | Created At | Updated At |
---|
php artisan datatables:make UsersDataTable
public function getUsers(UsersDataTable $dataTable)
{
return $dataTable->render('path.to.table.view');
}
@extends('app')
@section('content')
{!! $dataTable->table() !!}
@endsection
@push('scripts')
<link rel="stylesheet" href="https://cdn.datatables.net/buttons/1.0.3/css/buttons.dataTables.min.css">
<script src="https://cdn.datatables.net/buttons/1.0.3/js/dataTables.buttons.min.js"></script>
<script src="/vendor/datatables/buttons.server-side.js"></script>
{!! $dataTable->scripts() !!}
@endpush