File: D:/HostingSpaces/SBogers10/topswtwmobile.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