Skip to content

Instantly share code, notes, and snippets.

@drakakisgeo
Created January 16, 2014 21:13
Show Gist options
  • Save drakakisgeo/8463547 to your computer and use it in GitHub Desktop.
Save drakakisgeo/8463547 to your computer and use it in GitHub Desktop.
Eloquent Eager Loading with Trashed [Laravel]
Example
@foreach ($invoice->items->load(['product'=> function($q){$q->withTrashed();}]) as $item){
// do stuff
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment