@if (Session::has('success'))
{{ Session::get('success') }}
@endif
@if (Session::has('import_errors'))
@foreach (Session::get('import_errors') as $failure)
{{ $failure->errors()[0] }} at line no-{{ $failure->row() }}
@endforeach
@endif
@if (session()->has('lastBatch'))
একাধিক শিক্ষার্থী আপলোড করার তথ্য
| মোট আপলোড ডাটা |
{{ session('total') }}
|
| মোট পেন্ডিং ডাটা |
{{ session('total') }}
|
@endif
{{--
--}}
{{-- --}}
| শিক্ষার্থীর রোল
|
শিক্ষার্থীর নাম
|
শ্রেণী
|
সেকশন
|
শিফট
|
ভার্সন
|
Action |
@foreach ($students as $student)
{{ @$student->roll }} |
{{ @$student->studentInfo->student_name_en ?? @$student->studentInfo->student_name_bn }} |
@if (@$student->classRoom->class_id == 6)
Six
@elseif(@$student->classRoom->class_id == 7)
Seven
@elseif(@$student->classRoom->class_id == 8)
Eight
@elseif(@$student->classRoom->class_id == 9)
Nine
@elseif(@$student->classRoom->class_id == 10)
Ten
@else
-
@endif
|
{{ @$student->classRoom->section->section_name }}
|
{{ @$student->classRoom->shift->shift_name }} |
{{ @$student->classRoom->version->version_name }} |
{{--
--}}
{{--  }}) --}}
|
@endforeach
{{--
{{ @$institute->institute_name }}
--}}
{{-- --}}
@endsection
@section('custom-js')
@if (session()->has('lastBatch'))
@endif
@endsection