mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 09:54:44 +02:00
13 lines
279 B
PHP
13 lines
279 B
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\ApiKeyResource\Pages;
|
|
|
|
use App\Filament\Resources\ApiKeyResource;
|
|
use Filament\Actions;
|
|
use Filament\Resources\Pages\CreateRecord;
|
|
|
|
class CreateApiKey extends CreateRecord
|
|
{
|
|
protected static string $resource = ApiKeyResource::class;
|
|
}
|