Guest User

Untitled

a guest
Jan 16th, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. public function notes()
  2. {
  3. return $this->hasMany('AppNote');
  4. }
  5.  
  6. public function user()
  7. {
  8. return $this->belongsTo('AppUser');
  9. }
  10.  
  11. $notes = Note::orderBy('id', 'desc')->get();
Add Comment
Please, Sign In to add comment