You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
count(): Parameter must be an array or an object that implements Countable
at vendor/joelbutcher/laravel-archivable/src/Scopes/ArchivableScope.php:53
49▕ * @return string
50▕ */
51▕ protected function getArchivedAtColumn(Builder $builder)
52▕ {
➜ 53▕ if (count($builder->getQuery()->joins) > 0) {
54▕ return $builder->getModel()->getQualifiedArchivedAtColumn();
55▕ }
56▕
57▕ return $builder->getModel()->getArchivedAtColumn();
PHP 7.4.18
Laravel 8.42.1
Could you help? Thanks.
The text was updated successfully, but these errors were encountered:
Hi.
I'm trying to make a bulk archive but got the error.
it looks like a compatibility issue with PHP7.4.
Example code:
added Archivable trait to the Offer model.
PHP 7.4.18
Laravel 8.42.1
Could you help? Thanks.
The text was updated successfully, but these errors were encountered: