Broadcaster::auth()

mixed auth(Request $request) Authenticate the incoming request for a given channel. Parameters Request $request Return Value mixed

Broadcaster::broadcast()

void broadcast(array $channels, string $event, array $payload = array()) Broadcast the given event. Parameters array $channels string $event array $payload Return Value void

BroadcastController::getMiddleware()

array getMiddleware() Get the middleware assigned to the controller. Return Value array

BroadcastController::missingMethod()

mixed missingMethod(array $parameters = array()) Handle calls to missing methods on the controller. Parameters array $parameters Return Value mixed Exceptions NotFoundHttpException

BroadcastController::authenticate()

Response authenticate(Request $request) Authenticate the request for channel access. Parameters Request $request Return Value Response

BroadcastController

BroadcastController class BroadcastController extends Controller (View source) Methods ControllerMiddlewareOptions middleware(array|string|Closure $middleware, array $options = array()) Register middleware on the controller. from Controller array getMiddleware() Get the middleware assigned to the controller. from Controller Response callAction(string $method, array $parameters) Execute an action on the controller. from Controller mixed missingMethod(array $parameters = array()

BroadcastController::callAction()

Response callAction(string $method, array $parameters) Execute an action on the controller. Parameters string $method array $parameters Return Value Response

BroadcastController::middleware()

ControllerMiddlewareOptions middleware(array|string|Closure $middleware, array $options = array()) Register middleware on the controller. Parameters array|string|Closure $middleware array $options Return Value ControllerMiddlewareOptions

BroadcastChannel::__construct()

void __construct(Dispatcher $events) Create a new database channel. Parameters Dispatcher $events Return Value void

BroadcastChannel

BroadcastChannel class BroadcastChannel (View source) Methods void __construct(Dispatcher $events) Create a new database channel. array|null send(mixed $notifiable, Notification $notification) Send the given notification.