Captures the current working tree after theme slots, ArticleAccess, and the payment / paid-content plugins so subsequent work has a reviewable git history.
14 lines
289 B
PHP
14 lines
289 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;
|
|
}
|