@php $title = __('Payment Receipt'); @endphp {{ $title }} @foreach (['A', 'B'] as $key => $item)
{{ __('Payment') }} N°: {{ $payment->ref }}_{{ $item }}
{{ \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') }}: {{ $payment->carRental->car->registration_number ?? null }}
{{ __('Brand') }}: {{ $payment->carRental->car->carBrand->name ?? null }}
{{ __('Model') }}: {{ $payment->carRental->car->carModel->name ?? null }}
{{ __('Payment method') }}: {{ $payment->paymentMethod->name ?? null }}
{{ __('Payment date') }}: {{ $payment->payment_date ?? null }}
{{ __('Amount') }}: {{ $payment->amount ?? null }} {{ \App\Models\Setting::getValue('company_currency') }}
{{ \App\Models\Setting::getValue('company_corporate_name') }} {{ __('Signature') }}
{{ __('Client Signature') }}
@include('pdf.footer')
@endforeach