Skip to content

Instantly share code, notes, and snippets.

@blogcacanid
Created June 20, 2020 12:46
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 blogcacanid/bb580005c430a7f734ac0bf37eadf1f4 to your computer and use it in GitHub Desktop.
Save blogcacanid/bb580005c430a7f734ac0bf37eadf1f4 to your computer and use it in GitHub Desktop.
web.php Rest API Dengan JSON Web Token Lumen 7
<?php
/*
|--------------------------------------------------------------------------
| Application Routes
|--------------------------------------------------------------------------
|
| Here is where you can register all of the routes for an application.
| It is a breeze. Simply tell Lumen the URIs it should respond to
| and give it the Closure to call when that URI is requested.
|
*/
$router->get('/', function () use ($router) {
return $router->app->version();
});
$router->group(['middleware' => 'auth','prefix' => 'api'], function ($router)
{
$router->get('profile', 'AuthController@profile');
});
$router->group(['prefix' => 'api'], function () use ($router)
{
$router->post('register', 'AuthController@register');
$router->post('login', 'AuthController@login');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment