Skip to content

Instantly share code, notes, and snippets.

@ammezie
Created November 13, 2019 20:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ammezie/309bf080d2ac45205e6585bb2c9db440 to your computer and use it in GitHub Desktop.
Save ammezie/309bf080d2ac45205e6585bb2c9db440 to your computer and use it in GitHub Desktop.
// app/Http/Controllers/ChatController.php
public function joinChannel(Request $request)
{
$username = explode('@', $request->email)[0];
$this->channel->addMembers([$username]);
return redirect('/home');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment