Lavavel 5.5 comes with a new `Optional` class and helper optional() lets you perform calls on an object that might be null. Very useful for nullable relations.
optional(\App\User::find(1)->profile)->age
// return null if user has not a profile
or in blade
{!! optional($product->category)->title !!}