c3lf-system-3/routes/web.php

29 lines
902 B
PHP
Raw Normal View History

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) {
2019-11-15 21:10:28 +00:00
$router->get('events', ['uses' => 'EventController@showAllEvents']);
2019-11-15 20:59:47 +00:00
2019-11-15 21:10:28 +00:00
$router->get('events/{id}', ['uses' => 'EventController@showOneEvent']);
2019-11-15 20:59:47 +00:00
$router->post('events', ['uses' => 'EventController@create']);
$router->delete('events/{id}', ['uses' => 'EventController@delete']);
$router->put('events/{id}', ['uses' => 'EventController@update']);
});