Advertisement
fadlyshafa

Untitled

Mar 7th, 2020
357
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. <?php
  2.  
  3. namespace App\Models;
  4.  
  5. use Illuminate\Database\Eloquent\Model;
  6.  
  7. class M_produk extends Model
  8. {
  9.     protected $table = 'm_produk';
  10.  
  11.     public function supplier_r(){
  12.         return $this->belongsTo('App\Models\M_supplier','supplier','id');
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement