@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 !!}

--}}

@if ($product->discount)

${{ number_format($product->price * (1 - $product->discount/100),2) }} ({{ $product->discount }}%) ${{ number_format($product->price,2) }}
@else
${{ number_format($product->price * (1 - $product->discount/100),2) }}
@endif

@endforeach
{{ $products->withQueryString()->links() }} @endsection