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/mobile/pages/brands.blade.php
@extends('mobile.master')

@section('content')

    <div class="brand-page mobile-page">

        <!-- Title -->

        <h1 class="page-title">{{ Lang::choice('pages/brands.pageTitle',Shop::getLanguageService()->dialectCount()) }}</h1>

        <!-- Brand planes -->

        <div class="brand-list">

            @foreach( $brands as $key => $brand )

                <div class="brand">
                    <a href="/{{ $brand->route }}">
                        <span class="name">{{ $brand->name }}</span>

                        <span class="logo">
                            @if( ! empty($brand->large_image_url) )
                                <img src="{{ $brand->medium_image_url }}" alt="{{ $brand->name }} logo"/>
                            @endif
                        </span>
                    </a>
                </div>

            @endforeach

        </div>
    </div>

@stop