Deploy Ladill Queue / deploy (push) Successful in 56s
Phases 1–6: tickets, counters, displays, appointments, workflows, rules, analytics, reports, feedback, admin, device API, and Gitea deploy workflow for queue.ladill.com. Co-authored-by: Cursor <cursoragent@cursor.com>
12 lines
582 B
PHP
12 lines
582 B
PHP
<x-app-layout title="Reports">
|
|
<h1 class="mb-6 text-2xl font-semibold">Reports</h1>
|
|
<div class="grid gap-4 sm:grid-cols-2 lg:grid-cols-3">
|
|
@foreach ($reports as $type => $label)
|
|
<a href="{{ route('qms.reports.show', $type) }}" class="rounded-2xl border bg-white p-6 transition hover:border-indigo-300 dark:border-slate-700 dark:bg-slate-900">
|
|
<h2 class="font-semibold">{{ $label }}</h2>
|
|
<p class="mt-1 text-sm text-slate-600">View metrics and export CSV</p>
|
|
</a>
|
|
@endforeach
|
|
</div>
|
|
</x-app-layout>
|