Files
streakfit-api/app/Filament/Resources/Programs/Pages/ListPrograms.php
T
neckfireandClaude Opus 4.8 af32669931
Build & Deploy / build (push) Successful in 18s
StreakFit — API Laravel 13 OSDD + Octane/FrankenPHP
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-19 03:00:17 +02:00

20 lines
419 B
PHP

<?php
namespace App\Filament\Resources\Programs\Pages;
use App\Filament\Resources\Programs\ProgramResource;
use Filament\Actions\CreateAction;
use Filament\Resources\Pages\ListRecords;
class ListPrograms extends ListRecords
{
protected static string $resource = ProgramResource::class;
protected function getHeaderActions(): array
{
return [
CreateAction::make(),
];
}
}