{{ translate('Manage Level') }}
@if ($levels->count() > 0)
@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 @endforeach
{{ translate('Name') }} {{ translate('Action') }}
{{ $translations['name'] ?? ($level->name ?? '') }}
@if ($level->trashed()) @else @endif
{{ $levels->links('portal::admin.pagination.paginate') }}
@else @endif