Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

get deleted value 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();
 
PREVIOUS NEXT
Tagged: #deleted #laravel
ADD COMMENT
Topic
Name
6+5 =