Answers for "laravel debugbar not showing"

PHP
0

laravel debugbar not showing

Google Results raise issues of Debugbar not showing once installed

Lets debug the issue.

/* 
 * To Install The Debug Bar for your specific application
 * --dev ensure it be available during the development stages 
 *  only and does not go to the production 
 */
composer require barryvdh/laravel-debugbar --dev

/* At this stage the debugs bar is not shown. */
Step 1 : ensure that APP_DEBUG=true

/** It still does not work **/
/*
	Real Issue :
    Debug bar defines certain routes which need to optimize.
    Check the error.
    [2021-09-01 07:29:29] local.ERROR: Debugbar exception: Route [debugbar.openhandler] not defined.  
	[2021-09-01 07:34:36] local.ERROR: Debugbar exception: Route [debugbar.openhandler] not defined. 
*/

/** Cache all the config, routes and everything **/
php artisan optimize

/* The debug bar starts working */
Posted by: Guest on September-01-2021
0

laravel debugbar not showing

Google Results raise issues of Debugbar not showing once installed

Lets debug the issue.

/* 
 * To Install The Debug Bar for your specific application
 * --dev ensure it be available during the development stages 
 *  only and does not go to the production 
 */
composer require barryvdh/laravel-debugbar --dev

/* At this stage the debugs bar is not shown. */
Step 1 : ensure that APP_DEBUG=true

/** It still does not work **/
/*
	Real Issue :
    Debug bar defines certain routes which need to optimize.
    Check the error.
    [2021-09-01 07:29:29] local.ERROR: Debugbar exception: Route [debugbar.openhandler] not defined.  
	[2021-09-01 07:34:36] local.ERROR: Debugbar exception: Route [debugbar.openhandler] not defined. 
*/

/** Cache all the config, routes and everything **/
php artisan optimize

/* The debug bar starts working */
Posted by: Guest on September-01-2021

Browse Popular Code Answers by Language