Support the ongoing development of Laravel.io →
Eloquent Architecture

I have 2 table:

users
id, username, email, profile_image

user_images
id, user_id, file

a user profile_image is a one_to_one relationship toa user_image row.

now when I have a user I would like to get his image url so I do :

$user->profile_image->file;

BUT

when there is no row related in the user_images I would like to show a default image instead. Any ideas on how to handle it?

Last updated 2 years ago.
0

In your user model you could do the following.

public function getProfilePic() {
    $file = $this->profile_image->file;

    if ( empty($file) ) {
        // No file exists.
        return asset('empty_profile.png');
    }

    //
}
Last updated 2 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

tzookb tzookb Joined 9 Feb 2014

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2025 Laravel.io - All rights reserved.