| Total Complexity | 1 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class TechTipFiles extends Model |
||
| 8 | { |
||
| 9 | protected $primaryKey = 'tip_file_id'; |
||
| 10 | protected $fillable = ['tip_id', 'file_id']; |
||
| 11 | protected $hidden = ['created_at', 'updated_at', 'tip_file_id']; |
||
| 12 | |||
| 13 | // public function techTips() |
||
| 14 | // { |
||
| 15 | // return $this->hasMany('App\TechTips', 'tip_id', 'tip_id'); |
||
| 16 | // } |
||
| 17 | |||
| 18 | public function files() |
||
| 23 |