@extends('layouts.dashboard') @section('title', 'Detail Kelas | GrowUp') @section('dashboard_content') {{-- CREATE FORUM MODAL --}} @include('forum.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
{{-- CLASS FORUMS --}}
Buat Forum @if ($forums->count() != 0)
@foreach ($forums as $forum) @endforeach
# Judul Forum Aksi
{{ $loop->iteration }} {{ $forum->title }} Lihat Forum
@else
Belum ada forum di kelas ini
@endif
@endsection