chicongst/porto is a Laravel package for easy to make action and task.
It currently has 0 GitHub stars and 7 downloads on Packagist (latest version v1.0.2).
Install it with composer require chicongst/porto.
Discover more Laravel packages by chicongst
or browse all Laravel packages to compare alternatives.
Last updated
Easy to make Action and Taks with Porto structure.
composer require chicongst/porto
You may want to save the root of your project folder out of the app and add another namespace, for example
'namespace'=> 'App\\Containers\\',
'generator'=>[
'action-stub' => app_path('stubs/action.stub'),
'task-stub' => app_path('stubs/task.stub')
]
To generate everything you need, run this command:
php artisan porto:action Service/ActionName
php artisan porto:task Service/TaskName
php artisan vendor:publish --provider="Chicongst\Porto\ServiceProvider"