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:
11
resources/views/components/logistics/form-field.blade.php
Normal file
11
resources/views/components/logistics/form-field.blade.php
Normal file
@@ -0,0 +1,11 @@
|
||||
@props(['label', 'id', 'type' => 'text', 'placeholder' => ''])
|
||||
|
||||
<div>
|
||||
<label for="{{ $id }}" class="block text-sm font-medium text-gray-700 dark:text-gray-300">{{ $label }}</label>
|
||||
<input
|
||||
{{ $attributes->class(['mt-1.5 w-full rounded-lg border-gray-300 py-2 text-sm shadow-sm focus:border-primary-500 focus:ring-primary-500 dark:border-white/10 dark:bg-white/5 dark:text-white']) }}
|
||||
type="{{ $type }}"
|
||||
id="{{ $id }}"
|
||||
placeholder="{{ $placeholder }}"
|
||||
/>
|
||||
</div>
|
||||
Reference in New Issue
Block a user