@extends('layouts.app') @section('title', 'Batches') @section('page-title', 'Batches') @section('breadcrumb', 'Manage batches') @section('content')
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) }} Edit
@csrf @method('DELETE')
{{ $batches->links() }}
@else @endif
@endsection