Installation of telescope for local debugging.

This commit is contained in:
2024-11-25 15:29:15 +01:00
parent c0109006e8
commit 0f691afc7f
12 changed files with 443 additions and 6 deletions

View File

@@ -11,7 +11,10 @@ class AppServiceProvider extends ServiceProvider
*/
public function register(): void
{
//
if ($this->app->environment() !== 'local') {
$this->app->register(\Laravel\Telescope\TelescopeServiceProvider::class);
$this->app->register(TelescopeServiceProvider::class);
}
}
/**