check(); } /** * Get the validation rules that apply to the request. * * @return array|string> */ public function rules(): array { return [ // 'title' => ['required', 'string', 'max:255','min:5'], 'link' => ['required', 'string', 'max:255','min:5'], 'status' => ['required', 'boolean'], 'image' => ['nullable', 'image', 'mimes:jpeg,png,jpg,gif,svg', 'max:2048'], 'max_click' => ['required','numeric'], ]; } }