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?
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');
}
//
}
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community