You have not lived today until you have done something for someone who can never repay you. - John Bunyan
Id | Name | Created At | Updated At |
---|
public function getCarbon()
{
return view('datatables.collection.carbon');
}
public function getCarbonData()
{
$users = User::select(['id', 'name', 'email', 'created_at', 'updated_at'])->get();
return Datatables::of($users)
->editColumn('created_at', '{!! $created_at !!}')
->editColumn('updated_at', function ($user) {
return $user->updated_at->format('Y/m/d');
})
->make(true);
}
$('#users-table').DataTable({
processing: true,
serverSide: true,
ajax: 'https://yajratables.tuecus.com/collection/carbon-data',
columns: [
{data: 'id', name: 'id'},
{data: 'name', name: 'name'},
{data: 'email', name: 'email'},
{data: 'created_at', name: 'created_at'},
{data: 'updated_at', name: 'updated_at'}
]
});