1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace App\Providers;
- use Illuminate\Support\ServiceProvider;
- use Illuminate\Validation\Validator;
- class AppServiceProvider extends ServiceProvider
- {
-
- public function register()
- {
- if ($this->app->environment('local')) {
- $this->app->register(\Laravel\Telescope\TelescopeServiceProvider::class);
- $this->app->register(TelescopeServiceProvider::class);
- }
- }
-
- public function boot()
- {
-
- }
- }
|