aku nok ndi : /home/spdtg/www/schoolmis/app/ |
aku nok ndi : /home/spdtg/www/schoolmis/app/HostelBed.php |
<?php namespace App; use Illuminate\Database\Eloquent\Model; class HostelBed extends Model { protected $primaryKey = 'idBed'; protected $table = 'hostel_beds'; protected $fillable = ['bedName', 'idRoom', 'idFloor']; public function room() { return $this->belongsTo(HostelRoom::class, 'idRoom', 'idRoom'); } }