isWholesaler(); } /** * Get the validation rules that apply to the request. * * @return array */ public function rules() { return [ 'name' => 'required|string|min:2|max:255', 'active' => 'sometimes|accepted', 'description' => 'nullable|string|min:2|max:255', ]; } }