MaterielType::class, ]; protected $fillable = [ 'name', 'type', 'year', 'quarter', 'lowest_price', 'highest_price', 'created_by', 'updated_by', ]; public function createdBy() { return $this->belongsTo(AdminUser::class, 'created_by'); } public function updatedBy() { return $this->belongsTo(AdminUser::class, 'updated_by'); } }