@extends('layouts.app') @section('page-title', __('General Reports')) @section('page-heading', __('General Reports')) @section('content')
| Title | Category | Subcategory | County | Created By | Status | Files | Date Created | Actions |
|---|---|---|---|---|---|---|---|---|
| {{ Str::limit($report->title, 40) }} | {{ ucfirst($report->category) }} | {{ ucfirst(str_replace(['_', '-'], ' ', $report->subcategory)) ?? 'N/A' }} | {{ $report->county->name ?? 'N/A' }} |
{{ $report->creator->name }}
{{ $report->creator->role->display_name ?? 'N/A' }} |
{{ ucfirst($report->status) }} | {{ $report->attachments_count }} | {{ $report->created_at->format('M d, Y H:i') }} | |
|
No reports found @if(request()->hasAny(['search', 'county', 'status', 'category'])) @endif |
||||||||