@extends('layouts.admin') @section('title', 'Project Reports') @section('content') @include('projects._tabs', ['project' => $project, 'active' => 'reports'])
@forelse ($reports as $r) @empty @endforelse
ID Title Description Photo Author Created
#{{ $r->id }} {{ $r->title }} {{ $r->description ?? '-' }} @if ($r->photo) @else - @endif {{ $r->siteSupervisor?->name ?? '-' }} {{ optional($r->created_at)->format('d M Y, H:i') ?? '-' }}
No reports found for this project.
{{ $reports->links() }}
@endsection