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