@extends('admin.layouts.app') @section('title', 'Customer Details') @section('page_title', 'Customer Details') @section('content')
| Supplier Code: | {{ $customer->supplier_code ?? 'N/A' }} |
| Name: | {{ $customer->name }} |
| Email: | {{ $customer->email ?? 'N/A' }} |
| Phone: | {{ $customer->phone ?? 'N/A' }} |
| Contact Person: | {{ $customer->contact_person ?? 'N/A' }} |
| Status: | @if($customer->status == 1) Active @else Inactive @endif |
{{ $customer->address ?? 'N/A' }}