get deleted value laravel

Solutions on MaxInterview for get deleted value laravel by the best coders in the world

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
showing results for - "get deleted value laravel"
Omar
04 Sep 2018
1You can get also soft deleted record using withTrashed() of Laravel 
2Eloquent. It will return all record from table.
3
4Item::withTrashed()->get();
5
6You can get only soft deleted row using onlyTrashed() of Laravel Eloquent.
7
8Item::onlyTrashed()->get();