18 lines
479 B
PHP
18 lines
479 B
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\ProductionQuantityResource\Pages;
|
|
|
|
use App\Filament\Resources\ProductionQuantityResource;
|
|
use Filament\Actions;
|
|
use Filament\Resources\Pages\CreateRecord;
|
|
|
|
class CreateProductionQuantity extends CreateRecord
|
|
{
|
|
protected static string $resource = ProductionQuantityResource::class;
|
|
|
|
protected function getRedirectUrl(): string
|
|
{
|
|
return $this->getResource()::getUrl('create'); // Stay on Create Page after saving
|
|
}
|
|
}
|