@extends('layouts.frontend') @section('content') @include('frontend.companies.menu', ['active' => 'produits'])

Tous les produits {{ $brand->name }}

@foreach($brand->categories() as $category)
@foreach($category->products->where('published', 1)->where('brand_id', $brand->id) as $product) @include('frontend.products._product') @endforeach
@endforeach
@endsection