Build & Deploy / build (push) Successful in 19s
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
18 lines
418 B
PHP
18 lines
418 B
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\Streaks\Pages;
|
|
|
|
use App\Filament\Resources\Streaks\StreakResource;
|
|
use Filament\Resources\Pages\ListRecords;
|
|
|
|
class ListStreaks extends ListRecords
|
|
{
|
|
protected static string $resource = StreakResource::class;
|
|
|
|
// Streaks calculés par StreakService : aucune action de création manuelle.
|
|
protected function getHeaderActions(): array
|
|
{
|
|
return [];
|
|
}
|
|
}
|