Files
laralog/app/Filament/Resources/Comments/Pages/CreateComment.php
T

15 lines
290 B
PHP

<?php
declare(strict_types=1);
namespace App\Filament\Resources\Comments\Pages;
use App\Filament\Resources\Comments\CommentResource;
use Filament\Resources\Pages\CreateRecord;
class CreateComment extends CreateRecord
{
protected static string $resource = CommentResource::class;
}