mirror of
https://github.com/twinpath/app-beta.git
synced 2026-01-26 05:45:26 +07:00
25 lines
692 B
PHP
25 lines
692 B
PHP
@props([
|
|
'title',
|
|
'desc' => '',
|
|
])
|
|
|
|
<div {{ $attributes->merge(['class' => 'rounded-2xl border border-gray-200 bg-white dark:border-gray-800 dark:bg-white/[0.03]']) }}>
|
|
<!-- Card Header -->
|
|
<div class="px-6 py-5">
|
|
<h3 class="text-base font-medium text-gray-800 dark:text-white/90">
|
|
{{ $title }}
|
|
</h3>
|
|
@if($desc)
|
|
<p class="mt-1 text-sm text-gray-500 dark:text-gray-400">
|
|
{{ $desc }}
|
|
</p>
|
|
@endif
|
|
</div>
|
|
|
|
<!-- Card Body -->
|
|
<div class="p-4 border-t border-gray-100 dark:border-gray-800 sm:p-6">
|
|
<div class="space-y-6">
|
|
{{ $slot }}
|
|
</div>
|
|
</div>
|
|
</div> |