Advertisement
Guest User

Untitled

a guest
Jul 20th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. public function getPurchasedCoursesId()
  2. {
  3. return $this->courses()->wherePivot('end_at','>=', Carbon::now())->get();
  4.  
  5. }
  6.  
  7. $course_ids = $user->getPurchasedCoursesId()
  8. dd($coursesids)
  9. Result:
  10. [1, 4, 6, 10]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement