Skip to content

Latest commit

 

History

History
43 lines (31 loc) · 607 Bytes

telescope.md

File metadata and controls

43 lines (31 loc) · 607 Bytes

Laravel Telecope

An elegant debug assistant for the Laravel framework.

Installation

  1. Add laravel/telescope to composer.json to prevent auto-discovery
"extra": {
    "laravel": {
        "dont-discover": [
            "laravel/telescope"
        ]
    }
},
  1. Add TelescopeServiceProvider to the app config
'providers' => [
    ...

    ARKEcosystem\Foundation\Providers\TelescopeServiceProvider::class,

    ...
],
  1. Configure .env for local
APP_ENV=local
APP_DEBUG=true
  1. Configure .env for production
APP_ENV=production
APP_DEBUG=false