Skip to content

Instantly share code, notes, and snippets.

@mariowhowrites
Created February 27, 2018 20:37
Show Gist options
  • Save mariowhowrites/11aece630dd46bf076087d68abd56b2d to your computer and use it in GitHub Desktop.
Save mariowhowrites/11aece630dd46bf076087d68abd56b2d to your computer and use it in GitHub Desktop.
// app/Providers/RouteServiceProvider.php
$token = config('telegram.bot_token');
Route::post("$token/webhook", function () {
$update = Telegram::commandsHandler(true);
return 'ok';
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment