Directory : /proc/self/cwd/app/ |
Current File : //proc/self/cwd/app/Kategori.php |
<?php namespace App; use Illuminate\Database\Eloquent\Model; class Kategori extends Model { protected $guarded = []; public function barang(){ return $this->hasMany('App\Barang','kategori_id'); } }