@extends('layouts.app') @section('title', $brand->name . ' Parts') @section('content')

{{ $brand->name }} Parts

{{ $products->total() }} products found

@if($products->count() > 0)
@foreach($products as $product) @include('components.product-card', ['product' => $product]) @endforeach
{{ $products->links() }}
@else

No products found for this brand.

@endif
@endsection