IMMREX7

aku nok ndi : /home/spdtg/www/schoolmis/app/
File Up :
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');
    }

}

Copyright © 2021 - 2025 IMMREX7