mirror of
https://github.com/twinpath/app-beta.git
synced 2026-01-26 13:51:52 +07:00
first commit
This commit is contained in:
25
resources/views/components/common/component-card.blade.php
Normal file
25
resources/views/components/common/component-card.blade.php
Normal file
@@ -0,0 +1,25 @@
|
||||
@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>
|
||||
Reference in New Issue
Block a user