biohazard/laravel-debug-console

Works as a console viewer for laravel debugbar.

0.0.2 2023-04-17 12:42 UTC

This package is auto-updated.

Last update: 2024-04-18 09:47:48 UTC


README

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 biohazard/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.