Total Complexity | 4 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
29 | class ApplicationReview extends Model |
||
30 | { |
||
31 | protected $fillable = [ |
||
32 | 'review_status_id', |
||
33 | 'department_id', |
||
34 | 'notes', |
||
35 | ]; |
||
36 | |||
37 | /** |
||
38 | * The accessors to append to the model's array form. |
||
39 | * |
||
40 | * @var array |
||
41 | */ |
||
42 | protected $with = ['review_status']; |
||
43 | |||
44 | public function job_application() |
||
47 | } |
||
48 | |||
49 | public function review_status() |
||
52 | } |
||
53 | |||
54 | public function department() |
||
57 | } |
||
58 | |||
59 | public function getStatusAttribute() |
||
64 |