@if($entry->teacher_authentication_status == \App\Models\School\Teacher\Teacher::TEACHER_AUTHENTICATION_STATUS_WAITING &&
!empty($entry->teacher_authentication_file) &&
$allow_confirm)
{{ trans("backpack::teacher.authentication.button") }}
{{ trans("backpack::teacher.authentication.reject") }}
@endif
@if($entry->teacher_authentication_status == \App\Models\School\Teacher\Teacher::TEACHER_AUTHENTICATION_STATUS_CONFIRM)
{{ trans("backpack::teacher.authentication.confirm_message") }}: {{ $entry->teacher_authentication_name }} @ {{ $entry->teacher_authentication_at }}
@endif
@if($entry->teacher_authentication_status == \App\Models\School\Teacher\Teacher::TEACHER_AUTHENTICATION_STATUS_REJECT)
{{ trans("backpack::teacher.authentication.reject_message") }}: {{ $entry->teacher_authentication_name }} @ {{ $entry->teacher_authentication_at }}
@endif
@if(!empty($entry->teacher_authentication_at && !empty($entry->teacher_authentication_file)) && $entry->teacher_authentication_status == \App\Models\School\Teacher\Teacher::TEACHER_AUTHENTICATION_STATUS_CONFIRM)
{{ trans("backpack::teacher.authentication.remove_message", ['confirm_at' => $removed_at->format("Y-m-d")]) }}
@endif