@extends('layouts.app') @section('title', $vendor->shop_name) @section('content')
{{-- Vendor Header --}}
{{ $vendor->shop_name }}

{{ $vendor->shop_name }}

{{ $vendor->description }}

{{ $vendor->city }}, {{ $vendor->country }}

{{ $products->total() }} products from this vendor

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

No products from this vendor yet.

@endif
@endsection