mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-15 13:32:41 +08:00
16 lines
367 B
PHP
16 lines
367 B
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\System\SettingResource\Pages;
|
|
|
|
use App\Filament\Resources\System\SettingResource;
|
|
use Filament\Resources\Pages\Page;
|
|
|
|
class EditHitAndRun extends Page
|
|
{
|
|
protected static string $resource = SettingResource::class;
|
|
|
|
protected static string $view = 'filament.resources.system.setting-resource.pages.edit-hit-and-run';
|
|
|
|
|
|
}
|