@extends('layouts.page')
@section('head')
@include('elements.seo', [
'title'=>$brand->name,
'description'=> $brand->sort_description
])
@endsection
@section('content')
{{ $brand->name }}
@foreach ($products as $product)
{{ $product->name }}
{{--
{!! $product->short_description !!}
--}}
${{ currency($product->final_price['price']) }}
@if($product->final_price['has_discount'])
${{ currency($product->final_price['old']) }}
@endif
@endforeach
{{ $products->withQueryString()->links() }}
@endsection