Releases: ycs77/laravel-wizard
Releases · ycs77/laravel-wizard
v2.3.6
v2.3.5
v2.3.4
v2.3.3
v2.3.2
v2.3.1
Update the route file in Laravel 8.x:
routes/web.php
use App\Http\Controllers\UserWizardController;
use Illuminate\Support\Facades\Route;
use Ycs77\LaravelWizard\Facades\Wizard;
...
Wizard::routes('wizard/user', UserWizardController::class, 'wizard.user');
More detail see README.
Changed
- Bootstrap 5 support
Fixed
- Laravel 8 not working bug (#29)
v2.3.0
v2.2.1
v2.2.0
v2.1.0
If you have override the source code or base wizard view, there may be conflicts, please update your code and force republish views. (Forced republish will overwrite the old view, need to back up before operation.)
php artisan vendor:publish --tag=wizard-views --force
Added
- Add Wizardable trait
Deprecated
- Wizard controller
doneRedirectTo
method