@extends('layouts.app') @section('title', 'Vendor') @section('content')
Edit Delete Products
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') }}
@endsection @push('scripts') @endpush