Executor is a package that allows you to execute commands, actions, jobs, and automated tasks on your production server.
Install the latest version using Composer.
1composer require pharaonic/laravel-executor
Create a new executor class in executors directory.
1php artisan execute:make name2php artisan execute:make name --once3php artisan execute:make name --once --tag="something"
Run the executors.
1php artisan execute2php artisan execute --tag="something"
Run the executors.
1php artisan execute:rollback2php artisan execute:rollback --steps=7
Rollback the executors depending on the batch.
1php artisan execute:fresh
Show the table of the executors status.
1php artisan execute:status