I put this line on my .env file on my laravel application
DEBUGBAR_ENABLED=false
APP_DEBUG=false
But the app debug bar is still showing on the frontend? How can I remove this?
Just try this
Navigate to app/Providers/AppServiceProvider.php
Put this code \Debugbar::disable();
class AppServiceProvider extends ServiceProvider
{
public function boot()
{
\Debugbar::disable();
}
}
php artisan cache:clear