@extends('layouts.app') @section('title', 'Detail Laporan') @section('page-title', 'Detail Laporan') @section('content') Kembali
{{ $report->title }}
{{ $report->category->name ?? '-' }}
@if($report->photo) Foto laporan @else
@endif
Deskripsi

{{ $report->description }}

Lokasi

{{ $report->address ?? 'Alamat tidak dicantumkan' }}

{{ $report->latitude }}, {{ $report->longitude }}

Pelapor
Nama
{{ $report->user->name ?? '-' }}
Email
{{ $report->user->email ?? '-' }}
Telepon
{{ $report->user->phone ?? '-' }}
Perbarui Status
@csrf @method('PATCH')
Riwayat
  • Laporan dibuat
    {{ $report->created_at->format('d M Y, H:i') }}
  • Diproses
    {{ $report->processed_at?->format('d M Y, H:i') ?? 'Belum diproses' }}
  • Selesai
    {{ $report->completed_at?->format('d M Y, H:i') ?? 'Belum selesai' }}
@endsection