@php $candidate = $candidate ?? null; @endphp
@if ($candidate)
{{ __('Job Offer') }}
| {{ __('Date') }}: {{ now()->format('Y-m-d') }} |
{{ __('To') }}: {{ $candidate->name }} |
|
{{ __('With reference to your application to :company, we are pleased to offer you the position under the following terms.', ['company' => optional($candidate->company)->name]) }}
|
{{ __('Job Details') }}
| {{ __('Job Title') }}: {{ optional($candidate->position)->name }} |
{{ __('Department') }}: {{ optional($candidate->department)->name }} |
| {{ __('Work Type') }}: {{ __($candidate->work_type ?? '-') }} |
{{ __('Start Date') }}: {{ $candidate->start_date }} |
| {{ __('Total Monthly Salary') }}: {{ $candidate->total_salary }} {{ __('USD') }} |
{{ __('Notes') }}
- {{ __('This offer is valid for 48 hours only from the date of receipt.') }}
- {{ __('Expected start date') }}: {{ $candidate->start_date }}
{{ __('Approval') }}
| {{ __('I agree') }} |
{{ __('I do not agree') }} |
| {{ __('Employee Signature') }}: ____________________________ |
@endif
{{-- ✅ الفوتر --}}