@isset($proposedCustomer)
@lang('customer.customer_reference_no') | {{$proposedCustomer->id}} | |
@lang("customer.customer_name") | {{ strtoupper($proposedCustomer->full_name) }} | |
@lang('customer.business_name') |
{{$proposedCustomer->business_name}} |
|
@lang('customer.phone_carrier') | {{$proposedCustomer->phone_carrier}} {{ isset($proposedCustomer->phone_carrier2) ? '/ '. $proposedCustomer->phone_carrier2 : ''}} | |
@lang('customer.contact_number') | {{$proposedCustomer->mobile_1}} {{ isset($proposedCustomer->mobile_2) ? '/ '. $proposedCustomer->mobile_2 : ''}} | |
@lang('customer.gender') | {{$proposedCustomer->gender}} | |
@lang('customer.date_of_birth') | @if($proposedCustomer->date_of_birth) {{Carbon\Carbon::parse($proposedCustomer->date_of_birth)->format('d-m-Y')}} @endif | |
@lang('customer.place_of_birth') | {{$proposedCustomer->place_of_birth}} | |
@lang('mof.region') | {{$proposedCustomer->region}} | |
@lang('customer.district-subdistrict') | @if($proposedCustomer->city) {{$proposedCustomer->city}} @else Nil @endif - @if($proposedCustomer->district) {{$proposedCustomer->district}} @else Nil @endif - @if($proposedCustomer->sub_division) {{$proposedCustomer->sub_division}} @else Nil @endif - @if($proposedCustomer->area){{$proposedCustomer->area}} @else Nil @endif - @if($proposedCustomer->block){{$proposedCustomer->block}} @else Nil @endif | |
@lang('customer.last_updated') | {{ $proposedCustomer->created_at->diffForHumans() }} | |
@lang('customer.uploaded_photo') | @if (isset($proposedCustomer->file_path) && Storage::disk('local')->exists($proposedCustomer->file_path))
|
@else
No Photos Uploaded | @endif