Total Complexity | 2 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
20 | class ExperienceSkill extends BaseModel |
||
21 | { |
||
22 | protected $casts = [ |
||
23 | 'skill_id' => 'int', |
||
24 | 'experience_id' => 'int', |
||
25 | 'experience_type' => 'string', |
||
26 | 'justification' => 'string', |
||
27 | ]; |
||
28 | |||
29 | protected $fillable = [ |
||
30 | 'justification' |
||
31 | ]; |
||
32 | |||
33 | public function skill() |
||
34 | { |
||
35 | return $this->belongsTo(\App\Models\Skill::class); |
||
36 | } |
||
37 | |||
38 | public function experience() |
||
41 | } |
||
42 | } |
||
43 |