IMMREX7

aku nok ndi : /home/spdtg/www/schoolmis/app/
File Up :
aku nok ndi : /home/spdtg/www/schoolmis/app/BusRoute.php

<?php

namespace App;

use Illuminate\Database\Eloquent\Model;
use App\Traits;

class BusRoute extends Model {

    //
    
    protected $primaryKey = 'idBusRoute';
    protected $table = 'busroutes';
    protected $fillable = ['idRoute','idBus'];

    public function bus() {
        return $this->belongsTo(Bus::class, 'idBus', 'idBus');
    }

    public function route() {
        return $this->belongsTo(Route::class, 'idRoute', 'idRoute');
    }
}

Copyright © 2021 - 2025 IMMREX7