@extends('layouts.adminapp')
@section('content')
{{-- Batch Exam Report --}}
Batch Exam Report
Batch Exam Report Details
| Si No |
Admission No. |
Name |
Batch |
Course |
Actions |
@php $si = 0; @endphp
@foreach ($Students as $Student)
|
{{ ++$si }}
|
{{ $Student->admission_no }}
|
{{ $Student->name }}
|
{{ $Student->batchcourse->batch->title }}
|
{{ $Student->batchcourse->course->title }}
|
|
@endforeach
{{--
Showing {{}}
--}}
@endsection