Files
qds/app/Filament/Resources/ProductionLineStopResource/Pages/CreateProductionLineStop.php
dhanabalan 3f0d529640
All checks were successful
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 1m4s
Initial commit for new repo
2025-12-16 17:05:04 +05:30

18 lines
479 B
PHP

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