'int' ]; protected $fillable = [ 'name', 'arrangement_type_id' ]; public function arrangement_type() { return $this->belongsTo(ArrangementType::class); } public function inquiries() { return $this->hasMany(Inquiry::class, 'type_id'); } }