Skip to content
Icon

WARNING You're browsing the documentation for an old version of LARAVEL-DATATABLES. Consider upgrading your project to laravel-datatables 10.0.

Eloquent Model With Only Trashed

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

use Datatables;
 
Route::get('user-data', function() {
$model = App\User::onlyTrashed()->query();
 
return Datatables::eloquent($model)
->onlyTrashed()
->make(true);
});