Guest User

Untitled

a guest
Apr 15th, 2019
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. Loan Model
  2.     public function user() {
  3.         return $this->belongsTo('App\User');
  4.     }
  5.  
  6. ///////
  7. Loandetail Model
  8.     public function loan() {
  9.         return $this->belongsTo('App\Loan');
  10.     }
  11.  
  12.     public function inventory() {
  13.         return $this->belongsTo('App\Inventory');
  14.     }
Advertisement
Add Comment
Please, Sign In to add comment