
Step 1: Go to .env file
DEBUGBAR_ENABLED=false
APP_DEBUG=falseCode language: JavaScript (javascript)
Step 2: Go to TERMINAR and run this Commnad
php artisan cache:clearCode language: CSS (css)
But the app debug bar is still showing on the frontend
Step 3: Go to app/Providers/AppServiceProvider.php and Put this code \Debugbar::disable();
class AppServiceProvider extends ServiceProvider
{
public function boot()
{
\Debugbar::disable();
}
}
Code language: PHP (php)
Step 4: Go to TERMINAR and run this Commnad
php artisan cache:clearCode language: CSS (css)