설명 없음
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.

BroadcastServiceProvider.php 359B

12345678910111213141516171819
  1. <?php
  2. namespace App\Providers;
  3. use Illuminate\Support\Facades\Broadcast;
  4. use Illuminate\Support\ServiceProvider;
  5. class BroadcastServiceProvider extends ServiceProvider
  6. {
  7. /**
  8. * Bootstrap any application services.
  9. */
  10. public function boot(): void
  11. {
  12. Broadcast::routes();
  13. require base_path('routes/channels.php');
  14. }
  15. }