> */ public function rules(): array { return [ 'q' => ['sometimes', 'nullable', 'string', 'max:255'], 'category' => ['sometimes', 'nullable', 'string', 'max:255'], 'product' => ['sometimes', 'nullable', 'string', 'max:255'], 'type' => ['sometimes', 'nullable', 'string', 'max:255'], 'date' => ['sometimes', 'nullable', 'date_format:Y-m-d'], 'status' => [ 'sometimes', 'nullable', Rule::in([ Ticket::STATUS_ACTIVE, Ticket::STATUS_USED, Ticket::STATUS_EXPIRED, ]), ], 'page' => ['sometimes', 'integer', 'min:1'], 'per_page' => ['sometimes', 'integer', 'min:1', 'max:100'], ]; } }