Update project dependencies and enhance documentation
- Added `barryvdh/laravel-dompdf` to `composer.json` for PDF generation capabilities. - Updated `boost.json` to include `tailwindcss-development` in skills. - Modified `package.json` and `package-lock.json` to upgrade Tailwind CSS and related packages. - Improved README.md for clarity and corrected French language errors. - Created design system documentation for Filament components. - Added new Filament pages for Dashboard and Documentation with dynamic content loading. - Enhanced TablesExplorer functionality with improved table and column management.
This commit is contained in:
12
resources/views/components/logistics/stat-item.blade.php
Normal file
12
resources/views/components/logistics/stat-item.blade.php
Normal file
@@ -0,0 +1,12 @@
|
||||
@props(['icon' => null, 'label' => null, 'value'])
|
||||
|
||||
<div class="flex items-center gap-2 text-sm text-gray-500 dark:text-gray-400">
|
||||
@if ($icon)
|
||||
<x-filament::icon :icon="$icon" class="h-4 w-4 shrink-0" />
|
||||
@endif
|
||||
@if ($label)
|
||||
<span>{{ $label }} <span class="font-medium text-gray-700 dark:text-gray-200">{{ $value }}</span></span>
|
||||
@else
|
||||
<span class="font-medium text-gray-700 dark:text-gray-200">{{ $value }}</span>
|
||||
@endif
|
||||
</div>
|
||||
Reference in New Issue
Block a user