Where is the error? when the empty variable is full it works perfect but when it comes empty it does not show me the other part neither the image nor the link where the error can be ??
@foreach($products as $product)
<div>
@foreach($product->fphoto as $produ)
@if(empty($produ->id))
<a href="{{ route('products.show', $product->id) }}">
<img src="{{asset('img/profile.jpg')}}" alt="">
@else
<a href="{{ route('products.show', $product->id) }}">
<img src="{{ $produ->photo }}" alt="">
@endif
@endforeach
<h3>{{ $product->nombreyape }}</h3></a>
<p>Textop>
</div>
@endforeach