@extends('layouts.admin', ['title' => 'Cohorts — ' . ($program->name ?? 'Program'), 'currentPage' => 'programs', 'breadcrumbs' => [ ['title' => 'Programs', 'url' => route('admin.programs')], ['title' => $program->name ?? 'Program', 'url' => null], ['title' => 'Cohorts', 'url' => null], ]]) @section('content')

{{ $program->name }} — Cohorts

Manage cohorts and view their courses

@php $active = $cohorts->where('is_archived', false); $archived = $cohorts->where('is_archived', true); @endphp

Active Cohorts

Archived Cohorts ({{ $archived->count() }})
@endsection