arcanist icon indicating copy to clipboard operation
arcanist copied to clipboard

🧙‍♀️ Arcanist takes the pain out of building multi-step form wizards in Laravel.

Results 23 arcanist issues
Sort by recently updated
recently updated
newest added

I'd like to use Arcanist to rewrite an existing form that is pretty complicated right now. I've read the 'getting started' guide on the documentation but I'm still not sure...

I've added prepareForValidation for the wizard step as requested in #30

This PR introduces a new Wizard Repository based on Browser sessions. As mentioned in #23 there is a possibility to find sensitve Data saved in a Wizard just by guessing...

This PR lets you define validation rules for nested array input: ```php Field::make('checkboxes') ->rules(['checkboxes.*' => 'in:optionA,optionB') ```

It can be very helpful to easily get the currentStepIndex from the $wizard variable in our blade view. where we can do things like ```blade {{-- go previous step --}}...

Hi, I'm experiencing with this package and I have a trouble with file uploading: - In `WizardAction` I'm reading a file field (e.g. avatar) through `$payload` and i want to...

Your requirements could not be resolved to an installable set of packages. ``` Problem 1 - Root composer.json requires laravel-arcanist/inertia-response-renderer ^0.5.0 -> satisfiable by laravel-arcanist/inertia-response-renderer[0.5.0]. - laravel-arcanist/inertia-response-renderer 0.5.0 requires inertiajs/inertia-laravel...

Hi, I'm just getting started with this package but I have one security related question: When brute forcing the IDs of a wizard it is possible to access pending wizards...

Hi, is there a way to make a step repeatable? For example, we would have an additional button to save and new

enhancement

It will be great if there is a prepareForValidation() method just like in Form Request. Will be helpful for checkbox fields especially. Where we want to do a $this->boolean('checkbox_field') I...