laravel load relation with trashed code example
Example 1: laravel with trashed
$flights = App\Flight::withTrashed()
->where('account_id', 1)
->get();
Example 2: laravel load relation on a relation
$books = Book::with('author.contacts')->get();