Skip to content

Releases: ycs77/laravel-wizard

v2.3.6

12 Jan 16:47
Compare
Choose a tag to compare

Version Compatibility

  • Support PHP 8.2

v2.3.5

21 Jul 17:59
Compare
Choose a tag to compare

Added

v2.3.4

18 Jul 08:01
Compare
Choose a tag to compare

Changed

  • Move cache classes into Cache folder (887077)
  • Extract the create & done view methods in Wizardable (db9706)

v2.3.3

13 Jul 21:26
Compare
Choose a tag to compare

Version Compatibility

  • Support PHP 8.1 & Laravel 9 (#39)

Added

Fixed

  • Cache uploaded files, fixed Serialization of 'UploadedFile' is not allowed error - by @ycs77 (#37)

v2.3.2

20 Jul 17:24
e773350
Compare
Choose a tag to compare

Added

v2.3.1

17 Jul 17:29
Compare
Choose a tag to compare

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

09 Sep 12:47
Compare
Choose a tag to compare

Version Compatibility

  • Support Laravel 8 (#27)

v2.2.1

27 Jun 16:32
d7781eb
Compare
Choose a tag to compare

Change config wizard.view_path to wizard.step_view_path.

Added

  • Add config wizard view path (#24)

v2.2.0

05 Mar 13:36
Compare
Choose a tag to compare

Version Compatibility

  • Support Laravel 7.x

v2.1.0

03 Nov 18:43
Compare
Choose a tag to compare

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