領収証発行サービス
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
452B

  1. <?php
  2. namespace App\Providers;
  3. use Illuminate\Support\ServiceProvider;
  4. class SlackServiceProvider extends ServiceProvider
  5. {
  6. /**
  7. * Register services.
  8. */
  9. public function register(): void
  10. {
  11. //
  12. }
  13. /**
  14. * Bootstrap services.
  15. */
  16. public function boot(): void
  17. {
  18. //追記
  19. $this->app->singleton(
  20. 'slack',
  21. \App\Services\Slack\SlackService::class
  22. );
  23. }
  24. }