/home/techb158/ileadtechnology.com/SSM/app/Models/transport
NameSizeModeActions
vehicle/-0755rm
TransportCircle.php20420644editdlrm
TransportFee.php19930644editdlrm
TransportFeeDetail.php17640644editdlrm
TransportRoute.php19200644editdlrm
TransportRouteDetail.php17680644editdlrm
TransportRouteStudent.php17610644editdlrm
TransportStoppage.php19290644editdlrm
Edit: /home/techb158/ileadtechnology.com/SSM/app/Models/transport/TransportRoute.php (1920B)
'array']; protected $primaryKey = 'id'; protected $table = 'transport_routes'; protected static $logName = 'transport_route'; protected static $logFillable = true; protected static $logOnlyDirty = true; protected static $ignoreChangedAttributes = ['updated_at']; public function academicSession() { return $this->belongsTo('App\Models\Academic\AcademicSession'); } public function transportRouteDetails() { return $this->hasMany('App\Models\Transport\TransportRouteDetail'); } public function getOption(string $option) { return array_get($this->options, $option); } public function scopeFilterBySession($q, $session_id = null) { return $q->where('academic_session_id', '=', $session_id ? : config('config.default_academic_session.id')); } public function scopeFilterByAcademicSessionId($q, $academic_session_id) { if (! $academic_session_id) { return $q; } return $q->where('academic_session_id', '=', $academic_session_id); } public function scopeFilterById($q, $id) { if (! $id) { return $q; } return $q->where('id', '=', $id); } public function scopeFilterByName($q, $name, $s = 0) { if (! $name) { return $q; } return $s ? $q->where('name', '=', $name) : $q->where('name', 'like', '%'.$name.'%'); } }