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