Skip to content
Advertisement

Laravel Eloquent setting a default value for a model relation?

I have two models:

JavaScript

This works fine, I can call $product->defaultPhoto->thumb and $product->defaultPhoto->full and get the path to the related image, and get all photos using $product->photos and looping through the values.

The problem arises when the product does not have a photo, I can’t seem to figure out a way to set a default value for such a scenario.

I have tried doing things such as

JavaScript

I have also creating a completely new Collection to store the new Photo model in, but they both return the same error:

JavaScript

Has anyone done anything similar to this?

Thanks in advance!

Advertisement

Answer

You could create an accessor on the Product model that did the check for you. Works the same if you just wanted to define it as a method, also (good for if you want to abstract some of the Eloquent calls, use an interface for your Product in case you change it later, etc.)

JavaScript

You might also want to look into Presenters. A bit overkill for some situations, but incredibly handy to have (and abstract things like this away from your models).

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