photogeodata/app/Filament/Resources/PhotoGeoData/Pages/ListPhotoGeoData.php
2026-05-17 09:54:41 +02:00

20 lines
479 B
PHP

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