'int', 'crm_travel_country_id' => 'int', 'pos' => 'int', 'active' => 'bool' ]; protected $fillable = [ 'travel_country_id', 'crm_travel_country_id', 'name', 'description', 'pos', 'active' ]; protected $status_type = [ 0 => 'offen', 1 => 'erledigt', ]; public function travel_country() { return $this->belongsTo(TravelCountry::class, 'travel_country_id'); } public function crm_travel_country() { return $this->belongsTo(\App\Models\Sym\TravelCountry::class); } public function booking_country_services() { return $this->hasMany(BookingCountryService::class); } }