DEV Community

Discussion on: Laravel 8 - CRUD basic steps (Livewire and Tailwind)

Collapse
 
johanm87 profile image
Johan Montenij

If you get "count(): Parameter must be an array or an object that implements Countable",
try replacing the content of the Companies render-method with:

    return view('livewire.companies', ['companies' => Company::all()->sortByDesc('id')]);
Enter fullscreen mode Exit fullscreen mode