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