lexal/laravel-stepped-form

Stepped Form for Laravel.
489 3
Install
composer require lexal/laravel-stepped-form
Latest Version:v4.0.1
PHP:>=8.2
License:MIT
Last Updated:Aug 11, 2026
Links: GitHub  ·  Packagist
Maintainer: alexxxkk

Laravel Stepped Form

PHPUnit, PHPCS, PHPStan Tests

The package is based on the HTTP Stepped Form and built for Laravel framework.

Table of Contents

  1. Requirements
  2. Installation
  3. Configuration
  4. Usage
  5. License

Requirements

PHP: >=8.2

Laravel: ^11.0 || ^12.0

Installation

Via Composer

composer require lexal/laravel-stepped-form

Configuration

Publish the config

Run the following command to publish the package config file:

php artisan vendor:publish --provider="Lexal\LaravelSteppedForm\ServiceProvider\ServiceProvider"

Available config options

The configuration file config/stepped-form.php has the following options:

  1. renderer - contains Renderer class, instance or service alias that translates step's template definition into the response. Must implement Lexal\HttpSteppedForm\Renderer\RendererInterface;
  2. redirector - contains Redirector class, instance or service alias that redirects user between form steps. Must implement Lexal\HttpSteppedForm\Routing\RedirectorInterface;
  3. event_dispatcher - contains Event Dispatcher class, instance or service alias that dispatches form events. Must implement Lexal\SteppedForm\EventDispatcher\EventDispatcherInterface;
  4. exception_normalizers - contains exception normalizers that the form uses for normalizing SteppedFormException into the Response instance. Read more about them in the HTTP Stepped Form docs;
  5. forms - contains array of all application forms definitions. Form definition must have builder class for dynamic forms or array of steps for the static forms, settings class and storage where the form stores its data.

Usage

  1. Publish configuration file.

  2. Replace redirector, renderer and event dispatcher with your own implementation and add custom exception normalizers, if necessary.

  3. Declare form settings.

     use Lexal\HttpSteppedForm\Settings\FormSettingsInterface;
     use Lexal\SteppedForm\Step\StepKey;
    
     final class FormSettings implements FormSettingsInterface
     {
         public function getStepUrl(StepKey $key): string
         {
             // return step URL
         }
    
         public function getUrlBeforeStart(): string
         {
             // returns a URL to redirect to when there is no previously renderable step
         }
    
         public function getUrlAfterFinish(): string
         {
             // return a URL to redirect to when the form was finishing
         }
     }
    
     $formSettings = new FormSettings();
    
  4. Add forms definitions.

    • Static form
      return [
         // ...
      
         'forms' => [
             'customer' => [
                 'steps' => [
                     'customer' => CustomerStep::class,
                     'broker' => BrokerStep::class,
                     'confirmation' => ConfirmationStep::class,
                     // other steps
                 ],
                 'settings_class' => FormSettings::class,
                 'storage' => SessionStorage::class,
                 'session_key_storage' => SessionSessionKeyStorage::class,
             ],
         ],
      
         // ...
      ];
      
    • Dynamic form
      return [
         // ...
      
         'forms' => [
             'customer' => [
                 'builder_class' => CustomBuilder::class,
                 'settings_class' => FormSettings::class,
                 'storage' => SessionStorage::class,
                 'session_key_storage' => SessionSessionKeyStorage::class,
             ],
         ],
      
         // ...
      ];
      
  5. Use Stepped Form in you controller. Stepped Form service is registered under "stepped-form.{{form key}}" alias in the container.

    ServiceProvider.php

    use Lexal\HttpSteppedForm\SteppedFormInterface;
    
    $this->app->when(CustomerController::class)
         ->needs(SteppedFormInterface::class)
         ->give('stepped-form.customer');
    

    CustomerController.php

    use Lexal\HttpSteppedForm\SteppedFormInterface;
    
    final class CustomerController
    {
        public function __construct(private readonly SteppedFormInterface $form)
        {
        }
    
        // POST /customers
        public function start(): Response
        {
            return $this->form->start(new Customer(), /* nothing or customer id to split different sessions */);
        }
    
        // GET /customers/step/{step-key}
        public function render(string $key): Response
        {
            return $this->form->render($key);
        }
    
        // POST /customers/step/{step-key}
        public function handle(Request $request, string $key): Response
        {
            return $this->form->handle($key, $request);
        }
    
        // POST /customers/cansel
        public function cancel(): Response
        {
            return $this->form->cancel(route('customer.index'));
        }
    }
    

See configuration file for more information.

License

Laravel Stepped Form is licensed under the MIT License. See LICENSE for the full license text.

Related Packages

wobeto/twitter

Laravel 4 Service Provider to interact with twitter account, like return a colle...

135 1
andhikamaheva/date

A date library to help you work with dates in different languages

13 1
vlados/laravel-blade-crawler-detect

Boost Lighthouse and PageSpeed scores by hiding cookie banners, chat widgets and...

5,439 0
maystro/filament-popup-modal

A comprehensive modal dialog system for FilamentPHP with progress bars, callback...

7 1