Total Complexity | 4 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
24 | class ExperienceAward extends BaseModel |
||
25 | { |
||
26 | protected $casts = [ |
||
27 | 'title' => 'string', |
||
28 | 'award_recipient_type_id' => 'int', |
||
29 | 'issued_by' => 'string', |
||
30 | 'award_recognition_type_id' => 'int', |
||
31 | 'awarded_date' => 'date' |
||
32 | ]; |
||
33 | |||
34 | protected $fillable = [ |
||
35 | 'title', |
||
36 | 'award_recipient_type_id', |
||
37 | 'issued_by', |
||
38 | 'award_recognition_type_id', |
||
39 | 'awarded_date' |
||
40 | ]; |
||
41 | |||
42 | protected $table = ['experiences_award']; |
||
43 | |||
44 | public function award_recipient_type() //phpcs:ignore |
||
47 | } |
||
48 | |||
49 | public function award_recognition_type() //phpcs:ignore |
||
50 | { |
||
51 | return $this->belongsTo(\App\Models\Lookup\AwardRecognitionType::class); |
||
52 | } |
||
53 | |||
54 | public function experienceable() //phpcs:ignore |
||
57 | } |
||
58 | |||
59 | public function skills() |
||
64 |