Files
investbrain/resources/views/components/ib-card.blade.php
T
2024-10-18 20:46:22 -05:00

10 lines
226 B
PHP

@props(['title' => ''])
<x-card
{{ $attributes->merge(['class' => 'bg-slate-100 dark:bg-base-200 rounded-lg']) }}
>
<h2 class="text-xl mb-2 flex items-center truncate"> {{ $title }} </h2>
{{ $slot }}
</x-card>