<?php namespace App; use Illuminate\Database\Eloquent\Model; class Attribute extends Model { protected $guarded = ['id','created_at','updated_at']; public function attributeType(){ return $this->belongsTo( AttributeType::class ); } }