Doing nothing for others is the undoing of ourselves. - Horace Mann
Id | Name | Created At | Updated At |
---|
public function getBasicObject()
{
return view('datatables.fluent.basic-object');
}
public function getBasicObjectData()
{
$users = DB::table('users')->select(['id', 'name', 'email', 'created_at', 'updated_at']);
return Datatables::of($users)->make(true);
}
$('#users-table').DataTable({
processing: true,
serverSide: true,
ajax: 'https://yajratables.tuecus.com/fluent/basic-object-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'}
]
});