Total Complexity | 4 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
28 | class WorkSample extends BaseModel { |
||
29 | |||
30 | protected $casts = [ |
||
31 | 'name' => 'string', |
||
32 | 'file_type_id' => 'int', |
||
33 | 'date_created' => 'date', |
||
34 | 'url' => 'string', |
||
35 | 'description' => 'string', |
||
36 | 'applicant_id' => 'int' |
||
37 | ]; |
||
38 | protected $fillable = [ |
||
39 | 'name', |
||
40 | 'date_created', |
||
41 | 'file_type_id', |
||
42 | 'url', |
||
43 | 'description' |
||
44 | ]; |
||
45 | |||
46 | public function file_type() { |
||
47 | return $this->belongsTo(\App\Models\Lookup\FileType::class); |
||
48 | } |
||
49 | |||
50 | public function application_work_samples() { |
||
52 | } |
||
53 | |||
54 | public function skill_declarations() { |
||
56 | } |
||
57 | |||
58 | public function applicant() { |
||
63 |