@php $title = 'Facture De Location De Vehicule'; @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') }} .
IF:
{{ \App\Models\Setting::getValue('company_business_license') }} .
ICE:
{{ \App\Models\Setting::getValue('company_unique_identifier_of_the_company') }} .
CNSS:
{{ \App\Models\Setting::getValue('company_national_social_security_fund') }}
|
|
|
|
|
{{ __('Conducteur') }}:
@if ($carRental->otherDriver)
{{ $carRental->otherDriver->full_name ?? null }}
@else
@if ($carRental->driver && $carRental->driver->clientType->has_company_name ?? null)
{{ $carRental->driver->company_name ?? null }}
@else
{{ $carRental->driver->first_name ?? null }}
{{ $carRental->driver->last_name ?? null }}
@endif
@endif
{{ __('Mise a disposition') }}:
{{ \Carbon\Carbon::parse($carRental->departure_date)->format('d/m/Y') }} à Tétouan
{{ __('Restitution') }}:
{{ \Carbon\Carbon::parse($carRental->arrival_date)->format('d/m/Y') }} à Tétouan
{{ __('Nombre de jours') }}:
{{ $carRental->days_count }} Jours
{{ __('Kilométrage départ') }}:
{{ $carRental->departure_km }} KM
{{ __('Kilométrage retour') }}:
{{ $carRental->arrival_km }} KM
|
| Désignation | PU | Quantité (Durée en jours) |
Prix total (MAD) |
|---|---|---|---|
|
*Location de véhicule
{{ $carRental->carBrand->name ?? null }}
Modèle
{{ $carRental->carModel->name ?? null }}
Immatricule
{{ $carRental->car->registration_number ?? null }}
Du
{{ \Carbon\Carbon::parse($carRental->departure_date)->format('d/m/Y') }}
.Au
{{ \Carbon\Carbon::parse($carRental->arrival_date)->format('d/m/Y') }}
@if ($carRental->car->carCategory->name ?? null)
Catégorie:
{{ $carRental->car->carCategory->name ?? null }}
@endif
|
{{ $carRental->price ?? 0 }} | {{ \Carbon\Carbon::parse($carRental->departure_date)->diffIndays(\Carbon\Carbon::parse($carRental->arrival_date)) }} | {{ $carRental->rental_price ?? 0 }} |
| * Ventes additionnelles ou Extras | {{ $carRental->extras_price + $carRental->other_extras_price }} | {{ 1 }} | {{ $carRental->extras_price + $carRental->other_extras_price }} |
|