singleloginsystem/resources/views/components/dashboard-stats.blade.php
= 77b6008150 chore: component refactoring - badeg, button, card
- fix text truncation in badge component
- simplify tag rendering in button component
- remove padding in card component add space in actions
2026-05-13 09:48:54 +00:00

19 lines
626 B
PHP

<grid class="grid grid-cols-4 gap-x-4">
<x-shared.card class="p-4">
<p class="text-sm text-gray-400">Total Users</p>
<p class="text-2xl">284</p>
</x-shared.card>
<x-shared.card class="p-4">
<p class="text-sm text-gray-400">Active Roles</p>
<p class="text-2xl">4</p>
</x-shared.card>
<x-shared.card class="p-4">
<p class="text-sm text-gray-400">Services</p>
<p class="text-2xl">8</p>
</x-shared.card>
<x-shared.card class="p-4">
<p class="text-sm text-gray-400">Revoked Today</p>
<p class="text-2xl">7</p>
</x-shared.card>
</grid>