Files
fotospiel-app/app/Filament/Resources/InfrastructureActionLogs/Pages/ManageInfrastructureActionLogs.php
2025-11-18 16:45:56 +01:00

17 lines
427 B
PHP

<?php
namespace App\Filament\Resources\InfrastructureActionLogs\Pages;
use App\Filament\Resources\InfrastructureActionLogs\InfrastructureActionLogResource;
use Filament\Resources\Pages\ManageRecords;
class ManageInfrastructureActionLogs extends ManageRecords
{
protected static string $resource = InfrastructureActionLogResource::class;
protected function getHeaderActions(): array
{
return [];
}
}