- 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.
20 lines
474 B
PHP
20 lines
474 B
PHP
<?php
|
|
|
|
namespace App\Filament\Pages;
|
|
|
|
use Filament\Pages\Dashboard as BaseDashboard;
|
|
use Filament\Support\Icons\Heroicon;
|
|
|
|
class Dashboard extends BaseDashboard
|
|
{
|
|
protected static string|\BackedEnum|null $navigationIcon = Heroicon::OutlinedHome;
|
|
|
|
protected static ?string $navigationLabel = 'Accueil';
|
|
|
|
protected static ?string $title = 'API Logistics';
|
|
|
|
protected static ?int $navigationSort = 0;
|
|
|
|
protected string $view = 'filament.pages.dashboard';
|
|
}
|