*/ public function rules(): array { return [ 'state' => ['nullable', 'string', 'in:open,resolved,dismissed,all'], 'search' => ['nullable', 'string', 'max:255'], 'failed_at_from' => ['nullable', 'date'], 'failed_at_to' => ['nullable', 'date', 'after_or_equal:failed_at_from'], 'listener_class' => ['nullable', 'string', 'max:255'], ]; } }