Use the Symfony Workflow component in Laravel
Include the laravel-workflow package as a dependency in your composer.json
:
"picr/laravel-workflow": "dev-master"
Run composer install
to download the dependencies.
Add a ServiceProvider to your providers array in config/app.php
:
'providers' => [
'Picr\LaravelWorkflow\LaravelWorkflowServiceProvider',
]
Add the Workflow
facade to your facades array:
'Workflow' => 'Picr\LaravelWorkflow\Facades\WorkflowFacade',