When we give cheerfully and accept gratefully, everyone is blessed. - Maya Angelou
Id | Name | Created At | Updated At |
---|
use Yajra\Datatables\Html\Builder; // import class on controller
public function getBasic(Request $request, Builder $htmlBuilder)
{
if ($request->ajax()) {
return Datatables::of(User::select(['id', 'name', 'email', 'created_at', 'updated_at']))->make(true);
}
$html = $htmlBuilder
->addColumn(['data' => 'id', 'name' => 'id', 'title' => 'Id'])
->addColumn(['data' => 'name', 'name' => 'name', 'title' => 'Name'])
->addColumn(['data' => 'email', 'name' => 'email', 'title' => 'Email'])
->addColumn(['data' => 'created_at', 'name' => 'created_at', 'title' => 'Created At'])
->addColumn(['data' => 'updated_at', 'name' => 'updated_at', 'title' => 'Updated At']);
return view('datatables.html.method', compact('html'));
}
@section('demo')
{!! $html->table() !!}
@endsection
@section('scripts')
{!! $html->scripts() !!}
@endsection