Significant changes
Added several components and features too long to list here
This commit is contained in:
@@ -10,7 +10,7 @@ class Application extends Model
|
||||
|
||||
'applicantUserID',
|
||||
'applicantFormResponseID',
|
||||
'applicantStatus'
|
||||
'applicationStatus'
|
||||
|
||||
];
|
||||
|
||||
@@ -18,4 +18,21 @@ class Application extends Model
|
||||
{
|
||||
return $this->belongsTo('App\User', 'applicantUserID', 'id');
|
||||
}
|
||||
|
||||
public function response()
|
||||
{
|
||||
return $this->hasOne('App\Response', 'id', 'applicantFormResponseID');
|
||||
}
|
||||
|
||||
public function appointment() // 1 - 1
|
||||
{
|
||||
return $this->hasOne('App\Appointment', 'applicationID', 'id');
|
||||
}
|
||||
|
||||
public function setStatus($status)
|
||||
{
|
||||
return $this->update([
|
||||
'applicationStatus' => $status
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user