Laravel Telescope Enabled In Production
Description:
Testing:
/telescope/requestsRemediation:
composer require laravel/telescope --dev/**
* Register any application services.
**/
public function register(): void
{
if ($this->app->environment('local')) {
$this->app->register(\Laravel\Telescope\TelescopeServiceProvider::class);
$this->app->register(TelescopeServiceProvider::class);
}
}Potential Impact:
References:
Last updated