@extends('layouts.app') @section('content')
Manufacturer Details
Back to List Edit
@if($manufacturer->logo) {{ $manufacturer->name }} @else
@endif

{{ $manufacturer->name }}

Created: {{ $manufacturer->created_at->format('M d, Y H:i A') }}
Updated: {{ $manufacturer->updated_at->format('M d, Y H:i A') }}

Contact Person:

{{ $manufacturer->contact_person ?? 'N/A' }}

Phone:

{{ $manufacturer->contact_phone ?? 'N/A' }}

Email:

@if($manufacturer->contact_email) {{ $manufacturer->contact_email }} @else N/A @endif

Website:

@if($manufacturer->website) {{ $manufacturer->website }} @else N/A @endif

Country:

{{ $manufacturer->country ?? 'N/A' }}

Address:

{{ $manufacturer->company_address ?? 'N/A' }}

Status:

{{ $manufacturer->is_active ? 'Active' : 'Inactive' }}

Description:

{{ $manufacturer->description ?? 'No description available.' }}
@endsection