@extends('theme.default.layouts.app')
@section('dashboard-title')
Reports
@endsection
@section('content')
@php
$reports = collect([
(object)[
'id' => 1,
'name' => '',
'category' => '',
'date' => null,
'report_date' => null,
]
]);
@endphp
| Report Name |
Category |
Date |
Actions |
@forelse ($reports as $report)
| {{ $report->name }} |
{{ $report->category }} |
{{ $report->date ? \Carbon\Carbon::parse($report->date)->format('M, Y') : '-' }}
|
Download
|
@empty
|
No reports found
|
@endforelse
@endsection
@section('scripts')
@vite(['resources/js/pages/report.js'])
@endsection