Advertisement
ramdanidevid

barang model

Apr 19th, 2015
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1. <?php namespace App;
  2.  
  3. use Illuminate\Database\Eloquent\Model;
  4.  
  5. class Barangs extends Model {
  6.  
  7.     //
  8.  
  9.     public $timestamps = false;
  10.  
  11.     protected $table = 'barangs';
  12.  
  13.     protected $fillable = [ 'kd_barang', 'nama_barang', 'spesifikasi', 'label', 'created_at' ];
  14.  
  15.  
  16.     public function kondisi()
  17.     {
  18.         return $this->belongsTo('App\Kondisi', 'kd_kondisi', 'kd_kondisi');
  19.     }
  20.  
  21.  
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement