Add QRcode route for insured
This commit is contained in:
parent
fa879cb83c
commit
83d3c58637
|
@ -217,4 +217,14 @@ $router->get('/geocode', 'HelperController@getGoogleGeocoding');
|
|||
});
|
||||
});
|
||||
|
||||
// Insurances routes
|
||||
$router->group(['prefix' => '/insured'], function () use ($router) {
|
||||
//Search
|
||||
$router->get('search', 'InsuredController@searchInsured');
|
||||
});
|
||||
|
||||
//QRCode for agents
|
||||
$router->get('qrcode/read/{id_user}', 'QRCodeController@read');
|
||||
$router->get('qrcode/image/{id_user}', 'QRCodeController@image');
|
||||
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue