check(); } /** * Get the validation rules that apply to the request. * * @return array|string> */ public function rules(): array { return [ // 'name' => ['required','string','min:2'] , 'country' => ['required','string','min:2'], 'lat' => ['required','numeric','between:-90,90'], 'lng' => ['required','numeric','between:-180,180'], ]; } }