Merge branch 'SystemaFull' of https://github.com/BryamE/ProyectoLauck into ReportesNEW

This commit is contained in:
Bryam105
2026-06-02 10:51:28 -03:00
27 changed files with 1265 additions and 215 deletions
@@ -2,10 +2,10 @@
@php
$borderColor = match($color) {
'red' => 'border-l-red-500',
'yellow' => 'border-l-yellow-500',
'neon' => 'border-l-neon-lime',
default => 'border-l-gray-500'
'red' => 'border-l-red-500 dark:border-l-red-500',
'yellow' => 'border-l-yellow-500 dark:border-l-yellow-500',
'neon' => 'border-l-neon-lime dark:border-l-neon-lime',
default => 'border-l-gray-500 dark:border-l-gray-500'
};
@endphp