@extends('layouts.app') @section('title', 'My Courses - Teacher Dashboard') @section('content')

Course Management

Manage all your courses, sessions, and materials

@if($courses->count() > 0)
@foreach($courses as $course)
@if($course->image) {{ $course->title }} @else

{{ Str::limit($course->title, 20) }}

@endif
{{ ucfirst($course->status) }} {{ ucfirst($course->level) }}
{{ $course->title }}

{{ Str::limit($course->description, 80) }}

Sessions {{ $course->sessions->count() }}
Students {{ $course->enrollments->where('status', 'enrolled')->count() }}
Duration {{ $course->duration_weeks }}w
Created {{ $course->created_at->format('M d, Y') }} @if($course->price > 0) Rp {{ number_format($course->price, 0, ',', '.') }} @else Free @endif
@endforeach
@else

No Courses Yet

Start creating your first course to begin teaching!

Create Your First Course
@endif
@endsection