Deploy Ladill Queue / deploy (push) Successful in 43s
Analytics, Reports, Feedback, and Branches use simple headers again; report and related show views use shadow panels instead of card borders. Co-authored-by: Cursor <cursoragent@cursor.com>
13 lines
568 B
PHP
13 lines
568 B
PHP
<x-app-layout title="Reports">
|
|
<h1 class="mb-6 text-2xl font-semibold text-slate-900">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 bg-white p-6 shadow-sm transition hover:shadow-md">
|
|
<h2 class="font-semibold text-slate-900">{{ $label }}</h2>
|
|
<p class="mt-1 text-sm text-slate-600">View metrics and export CSV</p>
|
|
</a>
|
|
@endforeach
|
|
</div>
|
|
</x-app-layout>
|