@php $title = __('CONTRAT DE LOCATION DE VEHICULE LONGUE DUREE'); @endphp
| {{ __('Client Identification') }} | {{ __('Vehicle Identification') }} | ||||
|
@if ($client->clientType->has_company_name ?? null)
{{ __('Company name') }}:
{{ $client->company_name ?? null }}
@else
{{ __('Last name') }}:
{{ $client->last_name ?? null }}
{{ __('First name') }}:
{{ $client->first_name ?? null }}
@endif
@if (!($client->clientType->has_company_name ?? null))
{{ __('Driver (for legal entities)') }}:
{{ $client->full_name }}
@endif
@if (!($client->clientType->has_company_name ?? null))
{{ __('Nationality') }}:
@if ($lldContrat ?? null)
{{ $client && $client->has_passport ? 'Etranger' : 'Marocain' }}
@endif
@endif
@if ($client->passport || $client->cin)
{{ __('ID/Passport') }}:
{{ $client->has_passport ? $client->passport : $client->cin }}
@endif
@if ($client->license_number)
{{ __('Driving License') }}:
{{ $client->license_number ?? null }}
@endif
@if ($client->license_start_date)
{{ __('Issued on') }}:
{{ \Carbon\Carbon::parse($client->license_start_date)->format('d/m/Y') }}
@endif
{{ __('Address') }}:
{{ Str::limit($client->address ?? null, 35, '...') }}
{{ __('Phone') }}:
{{ $client->phone ?? null }}
{{ __('Email') }}:
{{ $client->email ?? null }}
|
{{ __('Brand') }}:
{{ $lldContrat->lldCommande->carBrand->name ?? null }}
{{ __('Model') }}:
{{ $lldContrat->lldCommande->carModel->name ?? null }}
{{ __('WW') }}:
{{ $lldContrat->car->ww_number ?? null }}
{{ __('Registration') }}:
{{ $lldContrat->car->registration_number ?? null }}
{{ __('Fuel') }}:
{{ $lldContrat->lldCommande->carVersion->carFuelType->name ?? null }}
{{ __('Departure Date') }}:
@isset($lldContrat)
{{ \Carbon\Carbon::parse($lldContrat->departure_date)->format('d/m/Y') }}
@endisset
{{ __('Expected Return Date') }}:
@isset($lldContrat)
{{ \Carbon\Carbon::parse($lldContrat->arrival_date)->format('d/m/Y') }}
@endisset
{{ __('Durée contractuelle') }}:
{{ $lldContrat->lldCommande->nb_mois }}
Mois
{{ __('Kilométrage contractuel') }}:
{{ $lldContrat->lldCommande->kms }}
|
||||
|
{{ __('Departure Location') }}:
{{ Str::limit($lldContrat->departure_location ?? null, 35, '...') }}
{{ __('Return Location') }}:
{{ Str::limit($lldContrat->arrival_location ?? null, 35, '...') }}
|
{{ __('Departure Km') }}:
@if ($lldContrat->departure_km ?? 0)
{{ $lldContrat->departure_km }}
@endif
{{ __('Return Km') }}:
@if ($lldContrat->arrival_km ?? 0)
{{ $lldContrat->arrival_km }}
@endif
|
||||
|
|
||||
| {{ __('Vehicle Condition at Departure') }}: | {{ __('Vehicle Condition at Return') }}: | ||||
|
|
||||
|
{{ __('Signature and Stamp') }} RENTOP
{{ __('Departure') }}
|
{{ __('Client Signature') }}
{{ __('Departure') }}
|
||||
|
{{ __('Signature and Stamp') }} RENTOP
{{ __('Return') }}
|
{{ __('Client Signature') }}
{{ __('Return') }}
|