Files
pds/app/Filament/Resources/ProductCharacteristicsMasterResource/Pages/EditProductCharacteristicsMaster.php
dhanabalan 7c086ceb28
Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Has been cancelled
Commented unwanted mount function
2026-02-16 12:22:23 +05:30

53 lines
1.7 KiB
PHP

<?php
namespace App\Filament\Resources\ProductCharacteristicsMasterResource\Pages;
use App\Filament\Resources\ProductCharacteristicsMasterResource;
use Filament\Actions;
use Filament\Resources\Pages\EditRecord;
class EditProductCharacteristicsMaster extends EditRecord
{
protected static string $resource = ProductCharacteristicsMasterResource::class;
public function getTitle(): string
{
return 'Edit Characteristics'; // This will replace the "New product characteristics master"
}
// public function mount(int|string $record): void
// {
// parent::mount($record);
// $model = $this->getRecord(); // actual model instance
// // Step 1: Fill the actual saved fields first
// $this->form->fill([
// 'plant_id' => $model->plant_id,
// 'item_id' => $model->item_id,
// 'line_id' => $model->line_id,
// 'machine_id' => $model->machine_id,
// 'name' => $model->name,
// 'characteristics_type' => $model->characteristics_type,
// 'inspection_type' => $model->inspection_type,
// // 'type' => $model->type,
// 'upper' => $model->upper,
// 'lower' => $model->lower,
// 'middle' => $model->middle,
// 'created_by' => $model->created_by,
// 'updated_by' => $model->updated_by,
// 'work_group_master_id' => optional($model->machine)->work_group_master_id,
// ]);
// }
protected function getHeaderActions(): array
{
return [
Actions\ViewAction::make(),
Actions\DeleteAction::make(),
Actions\ForceDeleteAction::make(),
Actions\RestoreAction::make(),
];
}
}