Obtenir la valeur supprimée Laravel

You can get also soft deleted record using withTrashed() of Laravel 
Eloquent. It will return all record from table.

Item::withTrashed()->get();

You can get only soft deleted row using onlyTrashed() of Laravel Eloquent.

Item::onlyTrashed()->get();
Lokesh003Coding