HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/topswtw.komma.pro/app/views/partials/products/overviewImage.blade.php
<a href="/{{ $product->route }}">

    {{-- ProductImage or NoImageFound-image (todo: maybe put this in a service? --}}
    @if( $product->small_image_url && file_exists($_SERVER['DOCUMENT_ROOT'] . $product->small_image_url) )
        <img src="{{ $product->small_image_url }}" alt="{{ $product->brand_name }} {{ $product->name }}"/>
    @else
        <img src="/images/structure/noImage.jpg" alt="No image found"/>
    @endif

</a>