2019-11-14 22:18:57 +00:00
|
|
|
<?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();
|
|
|
|
});
|
2019-11-15 20:59:47 +00:00
|
|
|
|
|
|
|
$router->group(['prefix' => 'api'], function () use ($router) {
|
|
|
|
$router->get('events', ['uses' => 'EventController@showAllAuthors']);
|
|
|
|
|
|
|
|
$router->get('events/{id}', ['uses' => 'EventController@showOneAuthor']);
|
|
|
|
|
|
|
|
$router->post('events', ['uses' => 'EventController@create']);
|
|
|
|
|
|
|
|
$router->delete('events/{id}', ['uses' => 'EventController@delete']);
|
|
|
|
|
|
|
|
$router->put('events/{id}', ['uses' => 'EventController@update']);
|
|
|
|
});
|