21 lines
448 B
PHP
21 lines
448 B
PHP
@extends('layout.master')
|
|
@section('body-class', 'page-categories')
|
|
@section('title', $brand->name)
|
|
|
|
@section('content')
|
|
<div class="container">
|
|
|
|
<x-shop-breadcrumb type="brand" :value="$brand" />
|
|
|
|
<div class="row">
|
|
@foreach ($products_format as $product)
|
|
<div class="col-6 col-md-3">@include('shared.product')</div>
|
|
@endforeach
|
|
</div>
|
|
|
|
{{ $products->links('shared/pagination/bootstrap-4') }}
|
|
|
|
</div>
|
|
|
|
@endsection
|