Skip to content

Instantly share code, notes, and snippets.

@farindra
Last active April 11, 2021 10:23
Show Gist options
  • Save farindra/302ae50fe0de5132eb68b69bc53219ec to your computer and use it in GitHub Desktop.
Save farindra/302ae50fe0de5132eb68b69bc53219ec to your computer and use it in GitHub Desktop.
Lumen Jwtauth Part 1 - Route Common
<?php
/* test response */
$router->get('/ping', [ 'as' => 'ping', function () use ($router) {
return 'pong';
}]);
/* lumen version */
$router->get('/version', [ 'as' => 'version', function () use ($router) {
return $router->app->version();
}]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment