{{ __('Detail Laporan') }}

Kembali
@if(session('success'))
{{ session('success') }}
@endif

Laporan oleh: {{ $report->user->name }}

{{ $report->user->email }}

@if($report->status === 'submitted') Submitted @elseif($report->status === 'validated') Validated @else Rejected @endif

Waktu Pelaksanaan

{{ $report->waktu_pelaksanaan->format('d F Y, H:i') }} WIB

Lokasi Kegiatan

{{ $report->lokasi_kegiatan }}

Materi yang Disampaikan

{{ $report->materi_disampaikan }}

Hasil yang Diharapkan

{{ $report->hasil_diharapkan }}

@if($report->catatan_keterangan)

Catatan atau Keterangan

{{ $report->catatan_keterangan }}

@endif @if($report->photos->count() > 0)

Foto Dokumentasi

@foreach($report->photos->sortBy('order') as $photo)
Foto {{ $photo->order }}
{{ $photo->order }}
@endforeach
@endif

Dibuat: {{ $report->created_at->format('d F Y, H:i') }} WIB

@if($report->updated_at != $report->created_at)

Diperbarui: {{ $report->updated_at->format('d F Y, H:i') }} WIB

@endif

Aksi Admin

@if($report->admin_comment)

Komentar Admin Saat Ini

{{ $report->admin_comment }}

@endif
@csrf @method('PATCH')
@error('status')

{{ $message }}

@enderror
@error('admin_comment')

{{ $message }}

@enderror