api.php 583 B

1234567891011121314151617
  1. <?php
  2. /*
  3. |--------------------------------------------------------------------------
  4. | API Routes
  5. |--------------------------------------------------------------------------
  6. |
  7. | Here is where you can register API routes for your application. These
  8. | routes are loaded by the RouteServiceProvider within a group which
  9. | is assigned the "api" middleware group. Enjoy building your API!
  10. |
  11. */
  12. Route::namespace('Api')->group(function () {
  13. Route::post('camera/getlist', 'CameraApiController@getCamerasList');
  14. Route::post('camera/geturl', 'CameraApiController@getCamerasUrl');
  15. });