Looking to hire Laravel developers? Try LaraJobs

laravel-console-output maintained by kodeops

Description
GraphQL utils for Laravel.
Author
Last update
2025/07/29 11:10 (dev-master)
License
Downloads
3 880

Comments
comments powered by Disqus
 _     _  _____  ______  _______  _____   _____  _______
 |____/  |     | |     \ |______ |     | |_____] |______
 |    \_ |_____| |_____/ |______ |_____| |       ______|
 

Laravel Console Output

Installation

$ composer require kodeops/laravel-console-output

Usage

Add singleton to App\Providers\AppServiceProvider

use kodeops\LaravelConsoleOutput\ConsoleOutput;

public function register()
{
    ...
    $this->app->bind('console', ConsoleOutput::class);
    ...
}