fadlyshafa

Untitled

Dec 31st, 2019
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.49 KB | None | 0 0
  1. <?php
  2.  
  3. namespace App\Models;
  4.  
  5. use Illuminate\Database\Eloquent\Model;
  6.  
  7. class Peminjaman extends Model
  8. {
  9.     protected $table = 'peminjaman';
  10.  
  11.     public function buku_r(){
  12.         return $this->belongsTo('App\Models\M_buku','buku');
  13.     }
  14.  
  15.     public function user_r(){
  16.         return $this->belongsTo('App\User','user');
  17.     }
  18.  
  19.     public function status_r(){
  20.         return $this->belongsTo('App\Models\M_status','status','kode')->withDefault(['nama'=>'Menunggu Verifikasi']);
  21.     }
  22. }
Add Comment
Please, Sign In to add comment