LaravelPackages.net
Acme Inc.
Toggle sidebar
madewithlove/laravel-debug-console

Works as a console viewer for laravel debugbar.

527
10
1.0.3
About madewithlove/laravel-debug-console

madewithlove/laravel-debug-console is a Laravel package for works as a console viewer for laravel debugbar.. It currently has 10 GitHub stars and 527 downloads on Packagist (latest version 1.0.3). Install it with composer require madewithlove/laravel-debug-console. Discover more Laravel packages by madewithlove or browse all Laravel packages to compare alternatives.

Last updated

Laravel Debug Console

Use as an alternative to view collected information from Laravel Debugbar package. Useful if you are building apis or running console commands.

php artisan app:debug queries

Installation

You can install the latest version via composer:

composer require --dev madewithlove/laravel-debug-console

Add the service provider to config/app.php if you are on laravel 5.4 or bellow:

'providers' => [
    // ...
    Madewithlove\LaravelDebugConsole\ServiceProvider::class
]

Usage

Open your console and run php artisan app:debug [messages|timeline|exceptions|route|queries|request] same options that are available by default on Laravel Debugbar.

Comments