nanosanteservice/routes/web.php

29 lines
1.2 KiB
PHP
Raw Normal View History

2021-10-04 16:24:39 +00:00
<?php
/** @var \Laravel\Lumen\Routing\Router $router */
/*
|--------------------------------------------------------------------------
| 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->group(['prefix' => '', 'middleware' => 'auth'], function () use ($router) {
// Insurances routes
$router->group(['prefix' => '/insurances'], function () use ($router) {
$router->get('', 'InsuranceController@getInsurances');
$router->group(['prefix' => '/subscriptions'], function () use ($router) {
$router->post('bonus-amount', 'InsuranceController@calculateBonusAmount');
$router->post('upload-images', 'InsuranceController@uploadImages');
$router->post('', 'InsuranceController@subscribe');
$router->put('{id}/validate', 'InsuranceController@validateSubscription');
$router->put('{id}/reject', 'InsuranceController@rejectSubscription');
2021-10-29 15:52:10 +00:00
$router->get('', 'InsuranceController@getSubscriptions');
});
});
2021-10-04 16:24:39 +00:00
});