Hello. I'm still new to laravel and I'm currently learning from a course. I noticed the instructor in the video is using laravel 10 and when I created my project via the instructions I was given I ended up with laravel 11.
Didn't think this would be an issue till I got to a section where my instructor was working on AuthServiceProvider and I noticed he has 5 provider files and I only have 1 which is the appServiceProvider.
Laravel made some significant changes to the Service Providers shipped with the application skeleton. You are supposed to us the application bootstrapper (in bootstrap/app.php) to do the things we previously handled in dedicated service providers. More here in the the Laracon EU keynote
You might find it easier to install the previous version to follow along with the tutorial