Partially done
All checks were successful
Build and Deploy Zola Website / build_and_deploy (push) Successful in 16s
All checks were successful
Build and Deploy Zola Website / build_and_deploy (push) Successful in 16s
This commit is contained in:
@ -53,4 +53,9 @@ $router->group('/refuel', ['RequireAuth'], function ($router) {
|
||||
$router->add('/create', 'RefuelController@create');
|
||||
});
|
||||
|
||||
// API
|
||||
$router->group('/api/v1', ['RequireAuth'], function ($router) {
|
||||
$router->add('/vehicles/get', 'VehicleController@api_get');
|
||||
});
|
||||
|
||||
$router->dispatch();
|
||||
|
Reference in New Issue
Block a user