I have build my admin panel with laravel backpack packages.Last night I had run composer update
which updated my backpack-crud package from 3.1.54 to 3.2.3, before update everything works perfectly but now i am getting "Call to a member function count() on array" error in admin listing.
when i check on the framework file the issue in create in below code:
<?php if($crud->filters->count()): ?>
<?php echo $__env->make('crud::inc.filters_navbar', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
<?php endif; ?>
any help how to resolve this