spatie / blender

The Laravel template used for our CMS like projects
https://freek.dev/on-open-sourcing-blender
876 stars 148 forks source link

There is no 'AppServiceProvider.php' file in path of 'app/Providers',why? #366

Closed JKChen closed 7 years ago

JKChen commented 7 years ago

I found that there is no 'AppServiceProvider.php' file in path of 'app/Providers'. How can i modify the boot method of 'AppServiceProvider.php' file?

sebastiandedeyne commented 7 years ago

Depending on what you want to accomplish, you can create a new service with php artisan make:provider.

The default AppServiceProvider is a bit too generic for our taste, we prefer to split the services of our app in multiple providers.

JKChen commented 7 years ago

Thank you for your reply. I created the file for my personal purpose.