*/ public function rules(): array { return [ 'name' => ['required', 'string', 'max:255'], 'address' => ['nullable', 'string', 'max:255'], 'lat' => ['nullable', 'numeric', 'between:-90,90'], 'lng' => ['nullable', 'numeric', 'between:-180,180'], 'description' => ['nullable', 'string'], 'access_instructions' => ['nullable', 'string'], ]; } }