@extends('master') @section('seo_title', $brand->marca ?? '') @section('seo_keywords', '') @section('seo_description', '') @section('content') @include('layout.breadcrumbs', [ 'page_title' => $brand->marca ?? '', 'page_before' => app()->getLocale() . '/brands/' . $brand->marca, ])
@if (!empty($brand->imagemPesquisa)) {{ $brand->marca }} @endif {{-- @if (!empty($brand->imagemBanner))
{{ $brand->marca }}
@endif --}}
@if (count($brand->treatments) > 0)

@lang('messages.COMPRAR_POR')

    @foreach ($brand->treatments as $key => $treatment)
  • {{ $treatment }}
  • @endforeach
@endif

@lang('messages.OS_MAIS_VENDIDOS')

@if (count($brand->mostSold) > 0)
@foreach ($brand->mostSold as $key => $product)
@include('shared.product', [ 'product' => $product, 'moreCols' => count($brand->mostSold) < 4 ? false : true, 'smallerFont' => false, ])
@endforeach
@else
@lang('messages.NENHUMA_SUGESTAO_NO_MOMENTO')
@endif
@if (!empty($brand->descricao))

@lang('messages.SOBRE') {{ $brand->marca }}

{!! $brand->descricao !!}
@endif
@endsection