@splendidkeen I'm not sure how you have your relationships set up between users and products but I can't see how Auth::user()->$product would work.
Is the user a business? Does the user have businesses? It's difficult to help without having a clear idea of what your site is trying to do.
If you have a relationship between users and products (which means each product should have a user_id column) then your relationship method on User model would be something like:
public function products()
{
return $this->hasMany(Product::Class);
}
You could then do:
@foreach(Auth::user()->products as $product)
<img src="/uploads/business/products/{{ $product->pictures->first()->product_image }}">
@endforeach
You need to specify the column with the filename which I believe you have as 'product_image', otherwise it's just going to spit out the entire record in your HTML
I'd also suggest that you save your product images to their own folder and perhaps a specific user / business folder. I usually just use the id of the model. If you put them all in the same folder you'll have difficulty differentiating between them if you look at the files.