@extends('dashboard.body.main') @section('container')

Supplier Details

{{-- Section: Left Profile (Contact) --}}

{{ $supplier->name }}

Supplier ID: #{{ $supplier->id }}

  • {{ $supplier->email }}
  • {{ $supplier->phone }}
  • {{ $supplier->city ?? 'Unknown' }}
{{-- Section: Right Detailed Info --}}
Information
Full Name

{{ $supplier->name }}

Email

{{ $supplier->email }}

Phone

{{ $supplier->phone }}

City

{{ $supplier->city }}

Address

{{ $supplier->address }}

Joined At

{{ $supplier->created_at->format('d M Y') }}

@endsection