@extends('layouts.dashboard.managerapp') @section('title', 'Customer/Vendor Details') @section('content')

Customer / Vendor Full Details

Back
Company Details
Company Name: {{ $customer->company }}
Company Nickname: {{ $customer->company_nickname }}
Email: {{ $customer->email }}
Mobile: {{ $customer->mobile }}
Secondary Mobile: {{ $customer->secondary_mobile }}
Company Type: {{ $customer->company_type }}
Company Role: {{ $customer->company_role }}
GST No: {{ $customer->gstno }}
PAN No: {{ $customer->panno }}
MSME No: {{ $customer->msmeno }}
IEC No: {{ $customer->iecno }}
Website: @if ($customer->url) {{ $customer->url }} @else Not Provided @endif
Status: @if ($customer->status == 1) Active @else Inactive @endif
Logo:
@if ($customer->image) @else No Logo Uploaded @endif

Address Details
Billing Address: {{ $customer->billing_address ?? '-' }}
Shipping Address: {{ $customer->shipping_address ?? '-' }}
Bank Details
Bank Name: {{ $customer->bank_name }}
Branch Name: {{ $customer->branch_name }}
Account Number: {{ $customer->account_number }}
Account Type: {{ $customer->account_type }}
Account Holder Name: {{ $customer->account_holder_name }}
Currency: {{ $customer->account_currency ?? 'INR' }}
IFSC Code: {{ $customer->ifsc_code }}
SWIFT Code: {{ $customer->swift_code ?? '-' }}

Contact Persons
@if ($customer->contactPersons->count())
@foreach ($customer->contactPersons as $idx => $contact) @endforeach
# Name Email Mobile Designation
{{ $idx + 1 }} {{ $contact->name }} {{ $contact->email }} {{ $contact->mobile }} {{ $contact->designation ?? '-' }}
@else No Contact Persons Available. @endif
@endsection