Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 404 Bytes

with-trashed.md

File metadata and controls

16 lines (12 loc) · 404 Bytes

Eloquent Model With Trashed

When our Model uses SoftDeletes trait of Laravel, we need to implicitly tell Datatables to include trashed records in the results. To achieve this, we can use withTrashed api.

use Datatables;

Route::get('user-data', function() {
	$model = App\User::query()->withTrashed();

	return Datatables::eloquent($model)
				->withTrashed()
				->make(true);
});