@extends('layouts.admin', ['title' => 'Programs - ESMT Learning Innovation Lab', 'currentPage' => 'programs', 'breadcrumbs' => [ ['title' => 'Programs', 'url' => null] ]]) @push('head') @endpush @section('content')

Academic Programs

Manage and organize your academic programs and cohorts

Total Programs: {{ $programs->count() }}
🎓
{{ $programs->count() }}
Programs
Active programs
👥
{{ $programs->sum('cohorts_count') }}
Cohorts
Total cohorts
📚
{{ $programs->sum('courses_count') }}
Courses
Total courses
🚀
{{ $programs->sum('activities_count') }}
Activities
Total activities
@if($programs->count() > 0)
@foreach($programs as $program)
🎓

{{ $program->name }}

{{ $program->cohorts_count }} cohorts

@if($program->cohorts_count > 0) Active @endif Program

@if(str_contains(strtolower($program->name), 'mba')) Master of Business Administration program with comprehensive business education. @elseif(str_contains(strtolower($program->name), 'executive')) Executive education program for senior professionals. @elseif(str_contains(strtolower($program->name), 'online')) Online learning program with flexible scheduling. @else Academic program designed for professional development and growth. @endif

{{ $program->cohorts_count }}
Cohorts
{{ $program->courses_count }}
Courses
View Cohorts
@endforeach
@else

No Programs Found

Get started by creating your first academic program.

@endif
@endsection