@extends('layouts.dashboard') @section('title', 'Detail Kelas | GrowUp') @section('dashboard_content') {{-- MAKE A MEETING MODAL --}} @include('sessions.create') {{-- TITLE --}}

Detail Kelas

{{-- COURSE DESCRIPTION --}}
{{ $course->title }} {{ $course->category->title }} {{ $course->price == null ? 'Gratis' : 'Rp' . number_format($course->price) }} {{ $course->description }}
{{-- CLASS INFO --}}
Kelas Dimulai
{{ \Carbon\Carbon::parse($course->started_at)->format('d M Y') }}
Kelas Berakhir
{{ \Carbon\Carbon::parse($course->ended_at)->format('d M Y') }}
Total Mentee
{{ $transaction->count() }} / {{ $course->max_mentee }}
Rating Kelas
@for ($i = 1; $i <= $course->rating; $i++) @endfor {{-- {{ $transaction->count() }} --}}
@endsection