mirror of
https://github.com/anna-sara/vbytes_lan.git
synced 2025-12-24 13:27:12 +01:00
13 lines
275 B
PHP
13 lines
275 B
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\Volunteers\Pages;
|
|
|
|
use App\Filament\Resources\Volunteers\VolunteerResource;
|
|
use Filament\Resources\Pages\CreateRecord;
|
|
|
|
class CreateVolunteer extends CreateRecord
|
|
{
|
|
protected static string $resource = VolunteerResource::class;
|
|
|
|
|
|
}
|