| Total Complexity | 2 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | class Reference extends BaseModel { |
||
| 25 | |||
| 26 | protected $casts = [ |
||
| 27 | 'name' => 'string', |
||
| 28 | 'email' => 'string', |
||
| 29 | 'description' => 'string', |
||
| 30 | 'relationship_id' => 'int', |
||
| 31 | ]; |
||
| 32 | protected $fillable = [ |
||
| 33 | 'name', |
||
| 34 | 'email', |
||
| 35 | 'relationship_id', |
||
| 36 | 'description' |
||
| 37 | ]; |
||
| 38 | |||
| 39 | public function relationship() { |
||
| 40 | return $this->belongsTo(\App\Models\Lookup\Relationship::class); |
||
| 41 | } |
||
| 42 | |||
| 43 | public function projects() { |
||
| 45 | } |
||
| 46 | |||
| 48 |