| اسم المعرض | فيستيفال لاند - عجمان | Exhibition Title |
| تاريخ التعاقد | {{ \Carbon\Carbon::parse($contract->created_at)->format('d/m/Y') }} | Date of contacting |
| اسم المستأجر (الشركة) | {{ $contract->tenant_name }} | Tenant Name |
| اسم ممثل المستأجر | {{ $contract->tenant_representative }} | Represented By |
| رقم جواز الهوية الاماراتيه | {{ $contract->tenant_id_no }} | ID NO# |
| الرخصة التجارية صادرة عن | {{ $contract->license_issued_by }} | L/C is issued by |
| رقم الرخصة | {{ $contract->license_no }} | L/C NO# |
| العنوان | {{ $contract->tenant_address }} | Location |
| موبايل | {{ $contract->tenant_phone }} | Mobile |
| البريد الالكتروني | {{ $contract->tenant_email }} | |
| تاريخ بداية العقد | {{ \Carbon\Carbon::parse($contract->start_date)->format('d/m/Y') }} | Date of Starting |
| تاريخ نهاية العقد | {{ \Carbon\Carbon::parse($contract->end_date)->format('d/m/Y') }} | Date Of Ending |
| النشاط التجاري | {{ $contract->business_activity }} | Activities |
| مساحة المكان المؤجر | {{ $contract->area_space }} | Area Space |
| منطقة المكان المؤجر | {{ $contract->area_location }} | Area Location |
| رقم المكان/ المحل | {{ $contract->shop->shop_number ?? '' }} | Shop No# |
| القيمة الايجارية الأساسية | {{ number_format($contract->rent_amount ?: $contract->total_amount, 2) }} | Rent Amount |
| مبلغ الضريبة | {{ number_format($contract->tax_amount, 2) }} | Tax Amount |
| الرصيد المدور | {{ number_format($contract->opening_balance, 2) }} | Opening Balance |
| إجمالي العقد الشامل | {{ number_format($contract->total_amount, 2) }} | Total Amount |
| رقم الحساب | {{ $contract->account_number }} | Account Number |
| نسبة الوكيل | {{ $contract->agent_percentage }} | Agent Percentage |
| طريقة السداد / الدفع | @if ($contract->payment_plan == 'once') دفعة واحدة @elseif ($contract->payment_plan == 'monthly') دفعات شهرية @elseif ($contract->payment_plan == 'quarterly') دفعات ربع سنوية @else {{ $contract->payment_plan }} @endif | Payment Plan |
| ملاحظات | {!! nl2br(e($contract->notes)) !!} | Notes |
" . nl2br(htmlspecialchars($line)) . "
"; } @endphp @php $contract_undertaking_en = $settings['contract_undertaking_en'] ?? 'I/We undertake to abide by the rules & guide lines set by the organizer, without any objection and, I the undersigned hereby declare confirm that I have read understood & shall abide by the terms & conditions stated on the reverse side of this document.'; $en_u_lines = array_filter(array_map('trim', explode("\n", $contract_undertaking_en))); foreach($en_u_lines as $line) { echo "" . nl2br(htmlspecialchars($line)) . "
"; } @endphp