@extends('frontend.shop.product-master') @php $brandssa = $brand->brand_name; @endphp @section('title') {{$brand->brand_name}} - The Marketplace @endsection @section('banner')

The Marketplace

{{$brand->brand_name}}

@endsection @section('products-content') @if(!$products->isEmpty())
@foreach($products as $product)
{{-- @forelse($product->prod_shop_cat as $cat) {{ $cat->shop_cat->shop_cat_name }} @empty No Categories @endforelse --}}
{{ $product->product_name }} £{{ $product->sale_price }} £{{ $product->regular_price }}
@endforeach
@else

No products were found matching your selection.

Back to shop
@endif @endsection