service-captcha/app/application/routes/channels.php

17 lines
535 B
PHP
Raw Permalink Normal View History

2023-03-05 20:14:04 +06:00
<?php
use Illuminate\Support\Facades\Broadcast;
/*
|--------------------------------------------------------------------------
| Broadcast Channels
|--------------------------------------------------------------------------
|
| Here you may register all of the event broadcasting channels that your
| application supports. The given channel authorization callbacks are
| used to check if an authenticated user can listen to the channel.
|
*/
2024-04-28 01:26:30 +05:00
Broadcast::channel('chart-captcha-activity', \App\Broadcasting\CreatedCaptchaLog::class);