@extends('layouts.teacher') @section('main-content')

{{ucfirst($course[0]->coursename)}}

Standard:- {{$course[0]->class_name}}th

Duration:- {{$course[0]->courseduration}} {{'( '.date("d-m-Y",strtotime($course[0]->start_date)).' to '.date("d-m-Y",strtotime($course[0]->end_date)).' )'}}

@foreach ($batch_list as $batch)
Card image cap
{{$batchname}}

Timing: {{$start_time." to ".$end_time}}
Subject: {{$subject_name}}
Mode: {{$mode}}
Fee: ₹{{$fee}}

Student List
@endforeach
@if(count($student_list) != 0) @foreach($student_list as $key => $student) @endforeach @endif
First Name Last Name Action
{{ $student->first_name }} {{ $student->last_name }} View

{{(count($student_list)==0)?"No Student Enrolled":""}}

{{-- Modal script --}} @endsection