- 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.
10 lines
452 B
PHP
10 lines
452 B
PHP
@props(['icon' => 'heroicon-o-inbox', 'title', 'description' => null])
|
|
|
|
<div class="flex flex-col items-center justify-center py-12 text-center">
|
|
<x-filament::icon :icon="$icon" class="h-10 w-10 text-gray-300 dark:text-gray-600" />
|
|
<p class="mt-3 text-sm font-medium text-gray-900 dark:text-white">{{ $title }}</p>
|
|
@if ($description)
|
|
<p class="mt-1 text-sm text-gray-500 dark:text-gray-400">{{ $description }}</p>
|
|
@endif
|
|
</div>
|