@extends('layouts.adminapp') @section('content') {{-- Student Batch Exam --}}

{{ $BatchExam->title }}

Date: {{ date_format(date_create($BatchExam->date), 'd-m-Y') }}
Batch: {{ $BatchExam->batchcourse->batch->title }}
Course: {{ $BatchExam->batchcourse->course->title }}
Course Period: {{ $BatchExam->courseperiod->title }}
@php $si=0; @endphp @foreach ($BatchExam->batchcourse->students as $Student) @endforeach
Si No. Name Admission No. Action
{{ ++$si }} {{ $Student->name }} {{ $Student->id }}
@endsection