@php $title = __('Fuel Voucher'); @endphp
|
{{ \App\Models\Setting::getValue('company_corporate_name') }}
{{ __('RC') }}:
{{ \App\Models\Setting::getValue('company_trade_register_number') }} .
{{ __('Patente') }}:
{{ \App\Models\Setting::getValue('company_license_number') }} .
{{ __('Tax Identification Number') }}:
{{ \App\Models\Setting::getValue('company_business_license') }} .
{{ __('Company Identifier') }}:
{{ \App\Models\Setting::getValue('company_unique_identifier_of_the_company') }}
.
{{ __('National Social Security Fund') }}:
{{ \App\Models\Setting::getValue('company_national_social_security_fund') }}
|
{{ __('Client') }}:
@if ($carRental->clientType->has_company_name ?? null)
{{ $carRental->client->company_name ?? null }}
@else
{{ $carRental->client->first_name ?? null }}
{{ $carRental->client->last_name ?? null }}
@endif
{{ __('Company Identifier') }}:
{{ __('Address') }}:
{{ $carRental->client->address ?? null }}
|
|
{{ __('Car') }}:
{{ $fuelVoucher->carRental->car->registration_number ?? null }}
{{ __('Brand') }}:
{{ $fuelVoucher->carRental->car->carBrand->name ?? null }}
{{ __('Model') }}:
{{ $fuelVoucher->carRental->car->carModel->name ?? null }}
|
{{ __('Date') }}:
{{ $fuelVoucher->date ?? null }}
{{ __('Amount') }}:
{{ $fuelVoucher->amount ?? null }}
{{ \App\Models\Setting::getValue('company_currency') }}
|
|
|
|