'required|string|email', 'name' => 'required|string|max:191', 'description' => 'nullable|string', ]; /** * Gets all eggs associated with this service. */ public function eggs(): HasMany { return $this->hasMany(Egg::class); } /** * Gets all servers associated with this nest. */ public function servers(): HasMany { return $this->hasMany(Server::class); } }