Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 409 Bytes

preparing-the-service-provider.md

File metadata and controls

17 lines (12 loc) · 409 Bytes

👨‍⚕️ Preparing the service provider

First of all, publish the Provider file:

php artisan vendor:publish --provider="RenokiCo\CashierRegister\CashierRegisterServiceProvider" --tag="provider"

Import the created app/Providers/CashierRegisterServiceProvider class into your app.php:

$providers = [
    // ...
    App\Providers\CashierRegisterServiceProvider::class,
];