- <?php
- namespace App\Filament\Widgets;
- use Filament\Widgets\Widget;
- class DashboardQuickLinks extends Widget
- {
- protected string $view = 'filament.widgets.dashboard-quick-links';
- protected int|string|array $columnSpan = 'full';
- // Push quick actions to the bottom of the dashboard
- protected static ?int $sort = 50;
- }
|