Advertisement
KristinLee

UserDetail .php

Feb 7th, 2017
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. <?php
  2. // This is  UserDetail  Model
  3.  
  4. namespace App;
  5.  
  6. use Illuminate\Database\Eloquent\Model;
  7.  
  8. class UserDetail extends Model
  9. {
  10.     public $fillable = ['telephone','gender','birthday','races'];
  11.      
  12.     public function user_detail()
  13.     {
  14.         return $this->belongsTo(User::class);
  15.     }
  16.      
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement