Turbo Laravel is a package that gives you a set of conventions to get the most out of Hotwire in Laravel. Turbo is inspired by the turbo-rails gem, giving Laravel developers a similar experience as those developing with Hotwire in the Ruby world.Hotwire is an open-source tool built by Basecamp (it powers the HEY email...
16 May, 2022
Laravel Console Wizard
Programing Coderfunda
May 16, 2022
Laravel, Packages
No comments
Laravel Console WIzzard is a package for creating multi-step wizards with complex input inside the console. Its primary purpose is to collect data for file generators—here’s an example from the project’s readme: 1namespace App\Console\Commands; 2 3use Shomisha\LaravelConsoleWizard\Command\Wizard; 4use Shomisha\LaravelConsoleWizard\Steps\ChoiceStep;...