@extends('layouts.app') @section('content')
Customer Details
Name:
{{ $customer->name }}
Address:
{{ $customer->address }}
Country:
{{ $customer->country_name }}
Credit Limit:
{{ $customer->credit_limit }}

Contact People
@forelse($customer->contactPeople as $contact) @empty @endforelse
Name Designation Phone Email Status Assign Date End Date
{{ $contact->name }} {{ $contact->designation }} {{ $contact->phone }} {{ $contact->email }} {{ $contact->status ? 'Active' : 'Inactive' }} {{ $contact->assign_date }} {{ $contact->end_date ?? '-' }}
No contact people found.
@endsection