/home/techb158/ileadtechnology.com/SSM/app/Models/student
Edit: /home/techb158/ileadtechnology.com/SSM/app/Models/student/StudentAccount.php (1913B)
'array'];
protected $primaryKey = 'id';
protected $table = 'student_accounts';
protected static $logName = 'student_account';
protected static $logFillable = true;
protected static $logOnlyDirty = true;
protected static $ignoreChangedAttributes = ['updated_at'];
public function student()
{
return $this->belongsTo('App\Models\Student\Student');
}
public function getOption(string $option)
{
return array_get($this->options, $option);
}
public function scopeFilterById($q, $id)
{
if (! $id) {
return $q;
}
return $q->where('id', '=', $id);
}
public function scopeFilterByStudentId($q, $student_id)
{
if (! $student_id) {
return $q;
}
return $q->where('student_id', '=', $student_id);
}
public function scopeFilterByName($q, $name, $s = 0)
{
if (! $name) {
return $q;
}
return $s ? $q->where('name', '=', $name) : $q->where('name', 'like', '%'.$name.'%');
}
public function scopeFilterByAccountNumber($q, $account_number)
{
if (! $account_number) {
return $q;
}
return $q->where('account_number', '=', $account_number);
}
}