'int', 'travel_place_id' => 'int', 'pos' => 'int', ]; protected $fillable = [ 'i_q_travel_item_id', 'travel_place_id', 'pos', ]; public function i_q_travel_item() { return $this->belongsTo(IQTravelItem::class); } public function travel_place() { return $this->belongsTo(TravelPlace::class); } }