© 2026 Hedgehog Software, LLC
Actions\Action::make('status.confirm') ->button() ->action(function () { if ($this->record->status == OrderStatus::PAID) { $this->record->status = OrderStatus::CONFIRMED; $this->record->save(); } }),
Forms\Components\Select::make('status') ->reactive() ->required(),