@extends('layouts.app') @section('title', 'Detail Produk') @section('content')

Detail Produk

@if($product->image) @else
@endif
{{ $product->name }}
{{ $product->code }}
{{ $product->status === 'active' ? 'Aktif' : 'Nonaktif' }}
Informasi Produk
Kategori{{ $product->category }}
Dibuat oleh{{ $product->creator->name }}
Tanggal dibuat{{ $product->created_at->format('d M Y') }}
Deskripsi{{ $product->description ?: '-' }}
Riwayat Panel Test
{{ $product->panelTests->count() }} test
@forelse($product->panelTests as $test) @empty @endforelse
Judul TestTanggalStatusPeserta
{{ $test->title }} {{ $test->test_date->format('d M Y') }} {{ ucfirst($test->status) }} {{ $test->testSessions->where('status','completed')->count() }} orang
Belum ada panel test
@endsection