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