@extends('layouts.app') @section('title', 'Vendor Products') @section('content')
Edit Delete
Photo {{ $vendor->name }}
Name {{ $vendor->name }}
About {!! $vendor->about !!}
Address {{ $vendor->address1 }} @if($vendor->address2)
{{ $vendor->address2 }} @endif
{{ $vendor->city ?? '' }}, {{ $vendor->state ?? '' }} @if($vendor->zip) {{ $vendor->zip }} @endif {{ $vendor->country ?? '' }}
Created Date {{ $vendor->created_at->format('m/d/y') }}
Last Updated {{ $vendor->updated_at->format('m/d/y') }}

Products

{{-- @if(Auth::user()->hasCacRole(['Vendor Admin'], $cac->id)) --}} {{-- Create Product --}} {{-- @endif --}} @if($products->count() > 0) @foreach($products as $product) @endforeach @else
You currently have no products to display.
@endif
@endsection @push('scripts') @endpush