_ _ _____ ______ _______ _____ _____ _______
|____/ | | | \ |______ | | |_____] |______
| \_ |_____| |_____/ |______ |_____| | ______|
$ composer require kodeops/laravel-console-output
Add singleton to App\Providers\AppServiceProvider
use kodeops\LaravelConsoleOutput\ConsoleOutput;
public function register()
{
...
$this->app->bind('console', ConsoleOutput::class);
...
}