| 123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace App\Providers;
- use Illuminate\Support\ServiceProvider;
- class AppServiceProvider extends ServiceProvider
- {
- /**
- * All of the container bindings that should be registered.
- *
- * @var array
- */
- public $bindings = [
- // Add bindings here...
- ];
- /**
- * Register any application services.
- */
- public function register(): void
- {
- //
- }
- /**
- * Bootstrap any application services.
- */
- public function boot(): void
- {
- //
- }
- }
|