@php use Filament\Support\Facades\FilamentView; $heading = $this->getHeading(); $description = $this->getDescription(); $label = $this->getLabel(); $filters = $this->getFilters(); $icon = $this->getIcon(); $iconColor = $this->getIconColor(); $iconBackgroundColor = filled($this->getIconBackgroundColor()) ? match ($this->getIconBackgroundColor()) { 'primary' => 'bg-primary-200 dark:bg-primary-950', 'secondary' => 'bg-secondary-200 dark:bg-secondary-950', 'success' => 'bg-success-200 dark:bg-success-950', 'danger' => 'bg-danger-200 dark:bg-danger-950', 'warning' => 'bg-warning-200 dark:bg-warning-950', 'info' => 'bg-info-200 dark:bg-info-950', default => 'bg-gray-200 dark:bg-gray-950', } : ''; $badge = $this->getBadge(); $badgeColor = $this->getBadgeColor(); $badgeIcon = $this->getBadgeIcon(); $badgeIconPosition = $this->getBadgeIconPosition(); $badgeSize = $this->getBadgeSize(); @endphp @if ($filters) @foreach ($filters as $value => $label) @endforeach @endif {{ \Filament\Support\Facades\FilamentView::renderHook(\Filament\Widgets\View\WidgetsRenderHook::TABLE_WIDGET_START, scopes: static::class) }} {{ $this->table }} {{ \Filament\Support\Facades\FilamentView::renderHook(\Filament\Widgets\View\WidgetsRenderHook::TABLE_WIDGET_END, scopes: static::class) }}