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 SystemDataFields extends Model
{
protected $primaryKey = 'field_id';
protected $fillable = ['sys_id', 'data_type_id', 'order'];
protected $hidden = ['order', 'created_at', 'updated_at'];
public function SystemDataFieldTypes()
return $this->belongsTo('App\SystemDataFieldTypes', 'data_type_id', 'data_type_id');
}