@extends('Training::backend.layouts.app') @section('title', 'Class Schedule List') @push('css') @endpush @section('content')
{{ $trTest->name }}
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif @if($errors->any())
@foreach ($errors->all() as $error)
* {{$error}}
@endforeach
@endif
{{--

Filter

Search Class Schedule

Clear
--}}
@foreach($trSurpriseSchedules as $trSutpriseSchedule) @endforeach
SL No. Start Time End Time Type Surprise Test Batch Action
{{ $loop->iteration ?? '' }} {{ date('d/m/Y h:i A', strtotime($trSutpriseSchedule->start_time)) ?? '' }} {{ date('d/m/Y h:i A', strtotime($trSutpriseSchedule->end_time)) ?? '' }} {!! $trSutpriseSchedule->link == null ? 'Offline' : 'Online' !!} {{ $trSutpriseSchedule->surpriseBatch->tr_batch_name ?? '' }} Trainees
@include('admin.sections.footer')
@endsection @push('js') @endpush