@foreach ($levels as $level)
@php $translations = parse_translation($level); @endphp
@php
$title = translate('Do you want to move to Trash');
$text = translate(
'If you move to Trash, the course and all related data will be trashed.',
);
if ($level->trashed()) {
$title = translate('Are you sure you want to delete this permanently');
$text = translate(
'If You delete it,course and course related all data will be deleted permanently.',
);
}
@endphp