diff publishable/resources/views/components/card.blade.php @ 4:84c75d9d90be

Changing usage to be bootstrap 5, not everything is reviewed but it's been started
author luka
date Tue, 19 Aug 2025 20:33:35 -0400
parents b44434aaa767
children
line wrap: on
line diff
--- a/publishable/resources/views/components/card.blade.php	Mon Jun 23 20:20:31 2025 -0400
+++ b/publishable/resources/views/components/card.blade.php	Tue Aug 19 20:33:35 2025 -0400
@@ -6,18 +6,5 @@
     'headerButton' => null, //button or link for the right side of the header
 ])
 
-<div class="bg-white p-4 rounded-lg shadow min-h-[200px]">
-    <div class="flex justify-between items-center">
-        <h4 class="font-semibold text-gray-800 mb-3 flex items-center">
-            {!! $icon ?? '' !!}
-            <span class="ml-2">{{ $title }}</span>
-        </h4>
-        {!! $headerButton !!}
-    </div>
-    {{ $slot }}
-    @if ($footer)
-        <div class="text-right mt-3">
-            {!! $footer !!}
-        </div>
-    @endif
+<div class="dashboard-card">
 </div>