Skip to content

Instantly share code, notes, and snippets.

@ammezie
Created November 13, 2019 20:49
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/641a0b29d3b9a94c8158202e517a3357 to your computer and use it in GitHub Desktop.
Save ammezie/641a0b29d3b9a94c8158202e517a3357 to your computer and use it in GitHub Desktop.
// app/Http/Controllers/ChatController.php
public function generateToken(Request $request)
{
return response()->json([
'token' => $this->client->createToken($request->user_id)
]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment