@php
$page_name = 'customer > profile';
$page_number = 0;
$search = 0;
@endphp
@include('layouts.table_top')
{{-- Column 1: Profile + Basic Info --}}
{{-- Column 2: Tax & Meta Info --}}
{{-- Column 3: Sale Summary --}}
{{-- Column 4: Sale Return --}}
@if ($item->company_logo)
@endif
Basic Info
Customer Code: {{ $item->customer_code }}
Contact Name: {{ $item->name }}
Company: {{ $item->company }}
Mobile: {{ $item->mobile }}
Alt Mobile: {{ $item->alternative_mobile }}
Telephone: {{ $item->telephone }}
Email: {{ $item->email }}
Address: {!! nl2br(e($item->addressdata)) !!}
Opening Balance: {{ $item->opening_balace }}
Status: {{ $item->status }}
Tax & Audit
GST No: {{ $item->gst_number }}
IGST No: {{ $item->igt_number }}
VAT No: {{ $item->vat_Number }}
License No: {{ $item->license_number }}
Tax No: {{ $item->tax_No }}
Created By: {{ $item->created_user }}
Created At: {{ $item->created_date }}
Updated By: {{ $item->updated_user }}
Updated At: {{ $item->updated_date }}
Sale Summary
Sub Amount: {{ numberformat($sa['p_amount']) }}
Discount:
{{ numberformat($sa['p_total_discount']) }}
VAT: {{ numberformat($sa['p_total_vat']) }}
Shipping:
{{ numberformat($sa['p_shiping_charge']) }}
Total: {{ numberformat($sa['p_total_amount']) }}
Gross Discount:
{{ numberformat($sa['p_gross_discount_amount']) }}
Net Amount: {{ numberformat($sa['p_nettotal']) }}
Payment: {{ numberformat($sa['pp_amount']) }}
Due: {{ numberformat($sa['p_due']) }}
Sale Return
Sub Amount: {{ numberformat($sa['pr_amount']) }}
Discount:
{{ numberformat($sa['pr_total_discount']) }}
VAT: {{ numberformat($sa['pr_total_vat']) }}
Shipping:
{{ numberformat($sa['pr_shiping_charge']) }}
Total: {{ numberformat($sa['pr_total_amount']) }}
Gross Discount:
{{ numberformat($sa['pr_gross_discount_amount']) }}
Net Amount: {{ numberformat($sa['pr_nettotal']) }}
Payment: {{ numberformat($sa['prp_amount']) }}
Due: {{ numberformat($sa['pr_due']) }}
@include('customers.profiles.document')
@include('customers.accounts.account')
@include('customers.profiles.sale')
@include('customers.profiles.sale_return')
@include('customers.profiles.sale_payment')
@include('customers.profiles.sale_return_payment')