@extends('layouts.app') @section('dashboard-title')

Reports

@endsection @section('content')
@forelse ($reports as $report) @empty @endforelse
Report Name Type Category Date Actions
{{ $report->name }} {{ $report->type }} {{ $report->category }} {{ $report->date ? \Carbon\Carbon::parse($report->date)->format('M, Y') : '-' }} Download
No reports found
@endsection @section('scripts') @vite(['resources/js/pages/report.js']) @endsection