tinyqc/app/Views/report/view.php

17 lines
600 B
PHP
Raw Normal View History

<?= $this->extend("layout/main_layout"); ?>
<?= $this->section("content"); ?>
<main class="flex-1 p-6 overflow-auto">
<div class="flex justify-between items-center mb-6">
<div>
<h1 class="text-2xl font-bold text-base-content tracking-tight">Report View</h1>
<p class="text-sm mt-1 opacity-70">View detailed QC report</p>
</div>
</div>
<div class="bg-base-100 rounded-xl border border-base-300 shadow-sm p-6">
<p class="text-base-content/60 text-center py-8">Report viewer coming soon...</p>
</div>
</main>
<?= $this->endSection(); ?>