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
I'm getting an error after opening a log file (in the popup/overlay):
Method Illuminate\Support\Collection::linkCollection does not exist. (View: .../vendor/opcodesio/log-viewer/resources/views/pagination.blade.php) (View: .../vendor/opcodesio/log-viewer/resources/views/pagination.blade.php)
That's this line in the view:
$links = $paginator->linkCollection()->toArray();
My Laraval version is 8.33.1. Maybe linkCollection is newer? That should be in the requirements. Or maybe my custom setup is breaking something.
My Illuminate\Pagination\LengthAwarePaginator does have a method linkCollection, but it's protected.
The text was updated successfully, but these errors were encountered:
If I change protected function linkCollection to public everything works perfectly, but eeeeeeh naaah. Did linkCollection change in some newer Laravel version or something?
I'm getting an error after opening a log file (in the popup/overlay):
That's this line in the view:
My Laraval version is
8.33.1
. MaybelinkCollection
is newer? That should be in the requirements. Or maybe my custom setup is breaking something.My
Illuminate\Pagination\LengthAwarePaginator
does have a methodlinkCollection
, but it's protected.The text was updated successfully, but these errors were encountered: