@extends('admin.layouts.app') @section('title', get_setting('site_name').' | Experience Certificate') @section('content') @include('admin.certificate.partials.styles')

{{ __('Experience Certificate') }}

{{ __('Generate a letter of experience for separated or active employees.') }}

{{ __('Generate Certificate') }}
{{ __('Last working / separation date') }}
@if($certificate_show == 1 && $employee) @php $joinDate = optional($employee->joing_date)->format('Y-m-d') ?? '—'; $endDateFormatted = request('end_date', $endDate ?? date('Y-m-d')); @endphp

{{ __('Letter of Experience') }}

{{ __('Date') }}: {{ date('d-m-Y') }}

{{ __('To') }},
{{ $employee->user?->name }}
{{ $employee->designation?->name ?? '—' }}

{{ __('Dear') }} {{ $employee->user?->name }},

{{ __('This is to state that') }} {{ $employee->user?->name }} {{ __('has been employed at') }} {{ get_setting('site_name') }} {{ __('from') }} {{ $joinDate }} {{ __('to') }} {{ $endDateFormatted }} {{ __('as a') }} {{ $employee->designation?->name ?? '—' }}.

{{ __('During the tenure with') }} {{ get_setting('site_name') }}, {{ __('the conduct has been good and performance has been up to expectations.') }} {{ __('We wish a bright and enterprising career ahead.') }}

{{ __('Best Regards') }},
{{ __('Authorized Signatory') }}
{{ get_setting('site_name') }}
@endif
@endsection