Directory : /home/aplikasiposinfo/www/hayyumart.com/app/ |
Current File : /home/aplikasiposinfo/www/hayyumart.com/app/DetailPaket.php |
<?php namespace App; use Illuminate\Database\Eloquent\Model; class DetailPaket extends Model { protected $guarded = []; public function paket_root(){ return $this->belongsTo(Paket::class, 'id_paket', 'id_paket'); } public function barang_root(){ return $this->belongsTo(Barang::class, 'kd_barang', 'kd_barang'); } }