belongsTo(Ipal::class, 'IpalId', 'IpalId'); } /** * Relasi ke model Perusahaan. */ public function perusahaan() { return $this->belongsTo(Perusahaan::class, 'PerusahaanId', 'PerusahaanId'); } /** * Relasi ke model IpalParameter. */ public function ipalParameter() { return $this->belongsTo(IpalParameter::class, 'IpalParameterId', 'IpalParameterId'); } }