You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
257 B
PHTML
12 lines
257 B
PHTML
2 weeks ago
|
<?php
|
||
|
|
||
|
namespace App\Filament\Resources\ReportResource\Pages;
|
||
|
|
||
|
use App\Filament\Resources\ReportResource;
|
||
|
use Filament\Resources\Pages\CreateRecord;
|
||
|
|
||
|
class CreateReport extends CreateRecord
|
||
|
{
|
||
|
protected static string $resource = ReportResource::class;
|
||
|
}
|