Skip to content
Advertisement

Weird Problem: Trying to get property ‘name’ of non-object in Laravel Blade

I have four tables: users, countries, regions and townships.

In User.php model,

JavaScript

In Country.php, Region.php and Township.php models,

JavaScript

In users.blade, I tried to print user’s location

JavaScript

and, I got Trying to get property 'name' of non-object exception.

When I just tried to print country, region and township like {{ $user->township->name }}, {{ $user->region->name }}, {{ $user->country->name }}, it printed as below –

JavaScript

It gets this exception in remote server only, there is no problem in local machine.

I have three views for all users, approved users and pending users. I have users.blade.php, users_approved.blade.php and users_pending.blade.php. Those blades are similar with only title text difference. There is no problem in approved users view (remote server also).

In MainController.php, I have those functions –

JavaScript

I have already tried – php artisan view:clear, php artisan cache:clear, php artisan config:clear.

Advertisement

Answer

If your problem occurs only on remote machine, maybe it’s because the data stored there is different. In particular, for some users for some reasons (legacy records, code errors, not using transactions… etc.) some of their relations might just not be set.

One workaround, suggested on Eloquent docpage itself, is supplying default values for those tied models, used when relationship is missing in DB. For example:

JavaScript

… etc. Another option is running a DB query to fetch all the users on remote maching with the following condition:

JavaScript

Depending on what you need, you may either modify those records or disable them in one way or another.

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