Files
telekeci/app/Filament/Resources/OutgoingLetters/Pages/CreateOutgoingLetter.php
2025-09-22 13:04:54 +05:00

12 lines
314 B
PHP

<?php
namespace App\Filament\Resources\OutgoingLetters\Pages;
use App\Filament\Resources\OutgoingLetters\OutgoingLetters\OutgoingLetterResource;
use Filament\Resources\Pages\CreateRecord;
class CreateOutgoingLetter extends CreateRecord
{
protected static string $resource = OutgoingLetterResource::class;
}