- 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.
16 lines
566 B
PHP
16 lines
566 B
PHP
@props(['title', 'description' => null])
|
|
|
|
<div class="border-b border-gray-200 px-6 py-4 dark:border-white/10">
|
|
<div class="flex items-center justify-between">
|
|
<div>
|
|
<h3 class="text-base font-semibold text-gray-950 dark:text-white">{{ $title }}</h3>
|
|
@if ($description)
|
|
<p class="mt-1 text-xs text-gray-500 dark:text-gray-400">{{ $description }}</p>
|
|
@endif
|
|
</div>
|
|
@isset($actions)
|
|
<div class="flex items-center gap-2">{{ $actions }}</div>
|
|
@endisset
|
|
</div>
|
|
</div>
|