'int', 'active' => 'bool', 'pos' => 'int' ]; protected $fillable = [ 'travel_company_id', 'name', 'description', 'active', 'pos' ]; protected $status_type = [ 0 => 'offen', 1 => 'erledigt', ]; public function travel_company() { return $this->belongsTo(TravelCompany::class); } public function booking_company_services() { return $this->hasMany(BookingCompanyService::class); } }