@extends('layouts.app') @section('title', 'Laporan') @section('page-title', 'Daftar Laporan') @section('content')
@forelse($reports as $report) @empty @endforelse
Foto Judul Pelapor Kategori Lokasi Status Tanggal Aksi
@if($report->photo) foto @else
@endif
{{ $report->title }}
{{ $report->description }}
{{ $report->user->name ?? '-' }} {{ $report->category->name ?? '-' }} {{ $report->address ?? '-' }} {{ $report->created_at->format('d M Y, H:i') }} Detail
Tidak ada laporan yang ditemukan.
@if($reports instanceof \Illuminate\Contracts\Pagination\LengthAwarePaginator) @endif
@endsection