Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tisuchi/6f850f2ce61b9995978ab09073c2b4ad to your computer and use it in GitHub Desktop.
Save tisuchi/6f850f2ce61b9995978ab09073c2b4ad to your computer and use it in GitHub Desktop.
<?php
User::where('user_id','=', $this->id)
->where('some condition here')
->join('items', 'items.user_id', '=', 'users.id')
->with('items')
->orderBy('items.type')
->get();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment