Guest User

Untitled

a guest
Jan 17th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <?php
  2.  
  3. $this->builder
  4. ->select('*') // needs to be here, otherwise the only returned column will be `last_login`
  5. ->selectSub(function ($q) {
  6. $q->from('action_logs')
  7. ->whereColumn('user_id', 'users.id')
  8. ->selectRaw('max(created_at)');
  9. }, 'last_login')
  10. ->get();
  11.  
  12. // all columns from the table...
  13. // last_login => '2019-01-16 12:34:56'
Add Comment
Please, Sign In to add comment