aku nok ndi : /home/spdtg/www/schoolmis/app/ |
aku nok ndi : /home/spdtg/www/schoolmis/app/Bus.php |
<?php namespace App; use Illuminate\Database\Eloquent\Model; use App\Traits; class Bus extends Model { use Traits\AutoUpdateUserColumns; protected $primaryKey = 'idBus'; protected $table = 'buses'; protected $fillable = ['busNo', 'busName' ,'engineNo', 'cesisNo', 'seatingCapacity', 'driverName', 'supporterName', 'contactNo']; public function routes() { return $this->hasMany(BusRoute::class, 'idBus', 'idBus'); } }