How to Get Soft Deleted Records in Laravel?
Laravel 5 Eloquent provide soft deleted feature is awesome that way laravel excluded all soft delete record. So By default Laravel Eloquent excludes all the soft deleted records from query results.
But 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();

Hardik Savani
I'm a full-stack developer, entrepreneur and owner of Aatman Infotech. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.