'decimal:2', 'max_price' => 'decimal:2', 'offers_meal' => 'boolean', ]; public function schedule(): BelongsTo { return $this->belongsTo(Schedule::class); } public function serviceType(): HasOne { return $this->hasOne(ServiceType::class, 'id', 'service_type_id'); } public function specialities(): HasMany { return $this->hasMany(CustomScheduleSpeciality::class); } }