| Total Complexity | 1 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class CustomerSystemData extends Model |
||
| 8 | { |
||
| 9 | protected $fillable = ['cust_sys_id', 'field_id', 'value']; |
||
| 10 | |||
| 11 | // public function CustomerSystems() |
||
| 12 | // { |
||
| 13 | // return $this->belongsTo('App\CustomerSystems', 'cust_sys_id', 'cust_sys_id'); |
||
| 14 | // } |
||
| 15 | |||
| 16 | // public function SystemDataFields() |
||
| 17 | // { |
||
| 18 | // return $this->hasOne('App\SystemDataFields', 'field_id', 'field_id'); |
||
| 19 | // } |
||
| 20 | |||
| 21 | public function SystemDataFields() |
||
| 26 |