Skip to content
Advertisement

Call to a member function count() on null

When I’m going to add data an error appears “Call to a member function count() on null”

View

JavaScript

Controller rekap:

JavaScript

but the data is successfully entered into the database, and what steps should I take to correct the error

Advertisement

Answer

error tells you that images or files or both variables are null, looks like you don’t use eager loading

quick and dirty way is to use optional helper

JavaScript

if you need only count then better approach is to use eloquent counting related models

JavaScript

now in every $row of $data you have fields images_count and files_count

JavaScript

also you can rename count variables like rekap::withCount(['images as imagesCount', 'files as filesCount'])

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement