Proks D
Proks D
Explore posts from servers
FFilament
Created by Proks D on 7/24/2024 in #❓┊help
Disable Wizard Header Click
Skippable prevent to go further in the wizard, but if I'm in the last step I can go back by clicking in the header. Do you know how to disable this?
5 replies
FFilament
Created by PabloZagni on 6/12/2024 in #❓┊help
Enable / Disable Wizard Next step button
I needed to remove the button entirely. If you want a custom action just remove ->view and treat as a normal action. Here is two examples: Wizard previusAction
->previousAction(
function (Action $action) {
return $action
->view('prev-button')
},
)
->previousAction(
function (Action $action) {
return $action
->view('prev-button')
},
)
resources > view > prev-button.blade.php
[empty file]
[empty file]
Wizard nextAction:
->nextAction(
function (Action $action) {
return $action
->label('Next')
->requiresConfirmation();
},
)
->nextAction(
function (Action $action) {
return $action
->label('Next')
->requiresConfirmation();
},
)
3 replies
FFilament
Created by Proks D on 6/7/2024 in #❓┊help
Multiple actions inline
That is it! Valeu Leandro! Actions\ resolveu. Meu chefe só dropou isso no meu colo um projeto novo, 10 anos sem ver PHP. Poderia me falar o por que precisar dessa Actions?
7 replies
FFilament
Created by Proks D on 6/7/2024 in #❓┊help
Multiple actions inline
Header actions must be an instance of Filament\Actions\Action, or Filament\Actions\ActionGroup.
Header actions must be an instance of Filament\Actions\Action, or Filament\Actions\ActionGroup.
😢
7 replies