@extends('layouts.app') @section('title', 'Batches') @section('page-title', 'Batches') @section('breadcrumb', 'Manage batches') @push('styles') @endpush @section('content')

Manage course batches, schedules, and enrolled learners.

Create Batch
@if($batches->count())
@foreach($batches as $batch) @endforeach
Batch Course Instructor Dates Status Actions
{{ $batch->title }} {{ $batch->course?->title ?? '—' }} {{ $batch->instructor?->name ?? '—' }} {{ $batch->start_date?->format('M d') ?? '—' }} — {{ $batch->end_date?->format('M d, Y') ?? '—' }} {{ ucfirst($batch->status) }}
@else @endif
@endsection @push('scripts') @if($batches->count()) @endif @endpush