for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class CustomerSystemFields extends Model
{
// protected $fillable = ['cust_sys_id', 'field_id', 'value'];
// public function CustomerSystems()
// {
// return $this->hasMany('App\CustomerSystems', 'cust_sys_id', 'cust_sys_id');
// }
// public function SystemCustDataFields()
// return $this->hasMany('App\SystemCustDataFields', 'field_id', 'field_id');
}