| Invoice Date |
|
| Received Date |
|
| Submission Date |
|
|
Due Date
@if($invoice->due_date < $invoice->phases->where('is_allowable_cost', null)->max('due_date')?->startOfDay())
@elseif($invoice->due_date < now() && !in_array($invoice->status, ['Paid', 'Over Paid']))
@endif
|
{{hijriDate($invoice->due_date)}}
|
{{-- invoice_number --}}
| Invoice Number |
|
{{-- claim_number --}}
| Claim Number |
|
{{-- start Period --}}
|
Start Period
@if($invoice->start_period < $invoice->phases->where('is_allowable_cost', null)->min('start_date')?->startOfDay())
@endif
|
{{hijriDate($invoice->start_period)}}
|
{{-- end Period --}}
|
End Period
@if(!$invoice->end_period || $invoice->end_period > $invoice->phases->where('is_allowable_cost', null)->max('due_date')?->startOfDay())
@endif
|
{{hijriDate($invoice->end_period)}}
|
{{-- finance_handover_date --}}
|
Finance Handover Date
|
{{hijriDate($invoice->finance_handover_date)}}
|
{{-- deduction type --}}
| Deduction Type |
{!! Form::select('is_deduction_excluding_vat', ['1' => 'Excluding VAT', '0' => 'Including VAT'], $form->is_deduction_excluding_vat, ['class' => 'form-select', 'data-kt-select2' => 'true', 'disabled' => !$is_editable, 'wire:model' => 'form.is_deduction_excluding_vat']) !!}
|
{{-- is currency hidden --}}
| {{ Form::label('is_currency_hidden', __('Hide Currency Symbol'), ['class' => 'col-form-label']) }} |
@error('form.is_currency_hidden') {{ $message }} @enderror
|
{{-- rounding_amount --}}
| {{ Form::label('rounding_amount', __('Round Total'), ['class' => 'col-form-label']) }} |
@error('form.rounding_amount') {{ $message }} @enderror
|
@if(false && $isMultiCurrencyAdjustable)
{{-- conversion rate --}}
| Conversion Rate |
{{-- {!! Form::text('conversion_rate', $invoice->conversion_rate, ['class' => 'form-control', 'placeholder' => 'Conversion Rate']) !!} --}}
{!! getIcon('pencil','fs-3') !!}
{{$invoice->conversion_rate}}
|
@endif