Files
kazi/resources/views/components/card.blade.php
Pedro Cabral 38df2d4fc8 added card component
Co-authored-by: Copilot <copilot@github.com>
2026-05-08 22:06:56 +02:00

10 lines
294 B
PHP

<div class="card bg-surface rounded border border-primary shadow">
@if(!empty($header))
<div class="card-header p-4 border-b border-primary">
<h3 class="font-semibold">{{ $header }}</h3>
</div>
@endif
<div class="card-body p-4">
{{ $slot }}
</div>
</div>