DashboardQuickLinks.php 336 B

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