| 123456789101112131415161718192021222324252627 |
- <?php
- namespace Webkul\Checkout\Providers;
- use Illuminate\Support\ServiceProvider;
- class CheckoutServiceProvider extends ServiceProvider
- {
- /**
- * Register services.
- */
- public function register(): void
- {
- include __DIR__.'/../Http/helpers.php';
- }
- /**
- * Bootstrap services.
- */
- public function boot(): void
- {
- $this->loadMigrationsFrom(__DIR__.'/../Database/Migrations');
- $this->app->register(EventServiceProvider::class);
- $this->app->register(ModuleServiceProvider::class);
- }
- }
|