2020-04-29 17:15:54 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class Application extends Model
|
|
|
|
{
|
2020-05-08 07:10:25 +00:00
|
|
|
public $fillable = [
|
|
|
|
|
|
|
|
'applicantUserID',
|
|
|
|
'applicantFormResponseID',
|
2020-05-22 02:49:16 +00:00
|
|
|
'applicationStatus'
|
2020-05-08 07:10:25 +00:00
|
|
|
|
|
|
|
];
|
2020-05-11 15:44:47 +00:00
|
|
|
|
2020-05-29 23:20:39 +00:00
|
|
|
|
2020-06-26 23:32:33 +00:00
|
|
|
|
|
|
|
|
2020-05-11 15:44:47 +00:00
|
|
|
public function user()
|
|
|
|
{
|
|
|
|
return $this->belongsTo('App\User', 'applicantUserID', 'id');
|
|
|
|
}
|
2020-05-22 02:49:16 +00:00
|
|
|
|
|
|
|
public function response()
|
|
|
|
{
|
|
|
|
return $this->hasOne('App\Response', 'id', 'applicantFormResponseID');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function appointment() // 1 - 1
|
|
|
|
{
|
|
|
|
return $this->hasOne('App\Appointment', 'applicationID', 'id');
|
|
|
|
}
|
|
|
|
|
2020-05-29 23:20:39 +00:00
|
|
|
public function votes()
|
|
|
|
{
|
|
|
|
return $this->belongsToMany('App\Vote', 'votes_has_application');
|
|
|
|
}
|
|
|
|
|
2020-06-26 23:32:33 +00:00
|
|
|
|
|
|
|
public function comments()
|
|
|
|
{
|
|
|
|
return $this->hasMany('App\Comment', 'applicationID', 'id');
|
|
|
|
}
|
|
|
|
|
2020-05-22 02:49:16 +00:00
|
|
|
public function setStatus($status)
|
|
|
|
{
|
|
|
|
return $this->update([
|
|
|
|
'applicationStatus' => $status
|
|
|
|
]);
|
2020-05-29 23:20:39 +00:00
|
|
|
|
2020-05-22 02:49:16 +00:00
|
|
|
}
|
2020-04-29 17:15:54 +00:00
|
|
|
}
|