Adding the Service Provider

🚧

This step of the installation is only required if you are using Laravel 5.4

If you are on Laravel >=5.5 you can skip this step

To add the Voyager Service Provider open up your application config/app.php file and add LaravelAdminPanel\AdminServiceProvider::class, in the providers array like so:

'providers' => [ // Laravel Framework Service Providers... //... // Package Service Providers LaravelAdminPanel\AdminServiceProvider::class, // ... // Application Service Providers // ... ],

What’s Next