find with trashed laravel code example
Example 1: laravel with trashed
$flights = App\Flight::withTrashed()
->where('account_id', 1)
->get();
Example 2: laravel query with trashed
$user->roles()->withTrashed()->get();