@php $title = __('Internal Contract'); @endphp {{ $title }}

{{ $title }}

{{ __('Driver Identification') }} {{ __('Vehicle Identification') }}
{{ __('Name') }}: {{ $internalContract->employee->name }}
{{ __('ID/Passport') }}: @if ($internalContract ?? null) {{ $internalContract->employee->cin }} @endif
{{ __('Driving License') }}: {{ $internalContract->employee->license_number ?? null }}
{{ __('Issued on') }}:
{{ __('Address') }}: {{ Str::limit($internalContract->employee->address ?? null, 35, '...') }}
{{ __('Phone') }}: {{ $internalContract->employee->phone ?? null }}
{{ __('Brand') }}: {{ $internalContract->carBrand->name ?? null }}
{{ __('Model') }}: {{ $internalContract->carModel->name ?? null }}
{{ __('Registration') }}: {{ $internalContract->car->registration_number ?? null }}
{{ __('Date of Manufacture') }}:
{{ __('Departure Date') }}: @isset($internalContract) {{ \Carbon\Carbon::parse($internalContract->departure_date)->format('d/m/Y') }} @endisset
{{ __('Expected Return Date') }}: @isset($internalContract) {{ \Carbon\Carbon::parse($internalContract->arrival_date)->format('d/m/Y') }} @endisset
{{ __('Actual Return Date') }}:
{{ __('Reason') }}: @isset($internalContract) {{ $internalContract->reason }} @endisset
{{ __('Departure Location') }}: {{ Str::limit($internalContract->departure_location ?? null, 35, '...') }}
{{ __('Return Location') }}: {{ Str::limit($internalContract->arrival_location ?? null, 35, '...') }}
{{ __('Departure Km') }}: {{ $internalContract->departure_km ?? null }}
{{ __('Return Km') }}: {{ $internalContract->arrival_km ?? null }}
@foreach ($FUEL_STATUS as $key => $item) @endforeach
{{ __('Departure fuel') }} {{ $item }}
@foreach ($FUEL_STATUS as $key => $item) @endforeach
{{ __('Arrival fuel') }} {{ $item }}
{{ __('Vehicle Condition at Departure') }}: {{ __('Vehicle Condition at Return') }}:
{{ __('Signature and Stamp') }} RENTOP
{{ __('Departure') }}
{{ __('Driver Signature') }}
{{ __('Departure') }}
{{ __('Signature and Stamp') }} RENTOP
{{ __('Return') }}
{{ __('Driver Signature') }}
{{ __('Return') }}
@include('pdf.footer')