{{ get_phrase('We have successfully received your instructor application and it is now under review.') }}
{{ get_phrase('Application Details') }}:
{{ get_phrase('Application ID') }}: @php $applicationId = is_array($application) ? ($application['id'] ?? 'N/A') : ($application->id ?? 'N/A'); echo $applicationId; @endphp
{{ get_phrase('Submission Date') }}: @php $createdAt = is_array($application) ? ($application['created_at'] ?? now()) : ($application->created_at ?? now()); if (is_object($createdAt) && method_exists($createdAt, 'format')) { echo $createdAt->format('F d, Y'); } else { echo date('F d, Y', strtotime($createdAt)); } @endphp
{{ get_phrase('Current Status') }}: {{ get_phrase('Under Review') }}
{{ get_phrase('Important Information') }}:
{{ get_phrase('You will be notified via email once your application has been processed.') }}
{{ get_phrase('If your application is accepted, you will receive an approval email with instructions on how to access the instructor dashboard.') }}
{{ get_phrase('If your application is rejected, you will receive a notification email with further information.') }}
{{ get_phrase('What happens next') }}?
{{ get_phrase('In the meantime') }}:
{{ get_phrase('You can continue to explore our platform and prepare your course materials while waiting for the review results.') }}
{{ get_phrase('If you have any questions about your application or need to provide additional documents, please contact our support team.') }}
{{ get_phrase('We appreciate your interest in becoming an instructor with us!') }}