12 lines
368 B
PHP
12 lines
368 B
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\ProfitCenterSupplierSchedules\Pages;
|
|
|
|
use App\Filament\Resources\ProfitCenterSupplierSchedules\ProfitCenterSupplierScheduleResource;
|
|
use Filament\Resources\Pages\CreateRecord;
|
|
|
|
class CreateProfitCenterSupplierSchedule extends CreateRecord
|
|
{
|
|
protected static string $resource = ProfitCenterSupplierScheduleResource::class;
|
|
}
|