Advertisement
safriansah

ravel-auth-model-user

Oct 23rd, 2020
2,068
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. class Users extends Model
  2. {
  3.     //
  4.     public function token()
  5.     {
  6.         return $this->hasMany('App\Models\Token', 'id_user');
  7.     }
  8.  
  9.     public function profile()
  10.     {
  11.         return $this->hasOne('App\Models\Profile', 'id_user');
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement