mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-03 14:10:57 +08:00
13 lines
297 B
PHP
13 lines
297 B
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\Section\CodecResource\Pages;
|
|
|
|
use App\Filament\Resources\Section\CodecResource;
|
|
use Filament\Pages\Actions;
|
|
use Filament\Resources\Pages\CreateRecord;
|
|
|
|
class CreateCodec extends CreateRecord
|
|
{
|
|
protected static string $resource = CodecResource::class;
|
|
}
|