@extends('layouts.app') @section('title', 'Supplier: ' . $supplier->name) @section('content')
Back

{{ $supplier->name }}

{{ $supplier->supplier_type ?? 'N/A' }}

Edit

Supplier Information

Supplier Name
{{ $supplier->name }}
@if($supplier->contact_person)
Contact Person
{{ $supplier->contact_person }}
@endif @if($supplier->email)
Email
{{ $supplier->email }}
@endif @if($supplier->phone)
Phone
{{ $supplier->phone }}
@endif @if($supplier->address)
Address
{{ $supplier->address }}
@endif @if($supplier->supplier_type)
Supplier Type
{{ ucfirst(str_replace('_', ' ', $supplier->supplier_type)) }}
@endif @if($supplier->tax_id)
Tax ID / Registration
{{ $supplier->tax_id }}
@endif
Status
{{ ucfirst($supplier->status) }}

Quick Info

Created
{{ $supplier->created_at->format('M d, Y') }}
Last Updated
{{ $supplier->updated_at->format('M d, Y') }}
@if($supplier->notes)

Notes

{{ $supplier->notes }}

@endif
@endsection