PHP code example of lexal / laravel-stepped-form-session-storage
1. Go to this page and download the library: Download lexal/laravel-stepped-form-session-storage library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
lexal / laravel-stepped-form-session-storage example snippets
/// config/stepped-form.php
return [
...
'forms' => [
'customer' => [
...
'storage' => \Lexal\LaravelSteppedFormSessionStorage\SessionStorage::class,
'session_key_storage' => \Lexal\LaravelSteppedFormSessionStorage\SessionSessionKeyStorage::class,
],
],
...
];