@section('offcanvas-title',__('lang_v1.more_info'))
@section('offcanvas-end')
@php
$custom_labels = json_decode(session('business.custom_labels'), true);
$numbers= [1,2,3,4,5,6,7,8,9,10]
@endphp
@if(!empty($contact->custom_field1))
-
{{ $custom_labels['contact']['custom_field_1'] ?? __('lang_v1.contact_custom_field1') }}
{{ $contact->custom_field1 }}
@endif
@if(!empty($contact->custom_field2))
-
{{ $custom_labels['contact']['custom_field_2'] ?? __('lang_v1.contact_custom_field2') }}
{{ $contact->custom_field2 }}
@endif
@if(!empty($contact->custom_field3))
-
{{ $custom_labels['contact']['custom_field_3'] ?? __('lang_v1.contact_custom_field3') }}
{{ $contact->custom_field3 }}
@endif
@if(!empty($contact->custom_field4))
-
{{ $custom_labels['contact']['custom_field_4'] ?? __('lang_v1.contact_custom_field4') }}
{{ $contact->custom_field4 }}
@endif
@if(!empty($contact->custom_field5))
-
{{ $custom_labels['contact']['custom_field_5'] ?? __('lang_v1.custom_field', ['number' => 5]) }}
{{ $contact->custom_field5 }}
@endif
@if(!empty($contact->custom_field6))
-
{{ $custom_labels['contact']['custom_field_6'] ?? __('lang_v1.custom_field', ['number' => 6]) }}
{{ $contact->custom_field6 }}
@endif
@if(!empty($contact->custom_field7))
-
{{ $custom_labels['contact']['custom_field_7'] ?? __('lang_v1.custom_field', ['number' => 7]) }}
{{ $contact->custom_field7 }}
@endif
@if(!empty($contact->custom_field8))
-
{{ $custom_labels['contact']['custom_field_8'] ?? __('lang_v1.custom_field', ['number' => 8]) }}
{{ $contact->custom_field8 }}
@endif
@if(!empty($contact->custom_field9))
-
{{ $custom_labels['contact']['custom_field_9'] ?? __('lang_v1.custom_field', ['number' => 9]) }}
{{ $contact->custom_field9 }}
@endif
@if(!empty($contact->custom_field10))
-
{{ $custom_labels['contact']['custom_field_10'] ?? __('lang_v1.custom_field', ['number' => 10]) }}
{{ $contact->custom_field10 }}
@endif
-
@lang('contact.tax_no')
{{ $contact->tax_number }}
@if($contact->pay_term_number)
-
@lang('contact.pay_term')
{{ $contact->pay_term_number . ' ' . __('lang_v1.' . $contact->pay_term_type) }}
@endif
@stop