mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-19 21:04:44 +02:00
14 lines
321 B
PHP
14 lines
321 B
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\ApiKeyResource\Pages;
|
|
|
|
use App\Filament\Resources\ApiKeyResource;
|
|
use Filament\Resources\Pages\CreateRecord;
|
|
|
|
class CreateApiKey extends CreateRecord
|
|
{
|
|
protected static string $resource = ApiKeyResource::class;
|
|
|
|
protected ?string $heading = 'Create Application API Key';
|
|
}
|