| 123456789101112131415161718 |
- <?php
- /*
- |--------------------------------------------------------------------------
- | API Routes
- |--------------------------------------------------------------------------
- |
- | Here is where you can register API routes for your application. These
- | routes are loaded by the RouteServiceProvider within a group which
- | is assigned the "api" middleware group. Enjoy building your API!
- |
- */
- Route::namespace('Api')->group(function () {
- Route::post('camera/getlist', 'CameraApiController@getCamerasList');
- Route::post('camera/geturl', 'CameraApiController@getCamerasUrl');
- Route::get('camera/stopstream', 'CameraApiController@stopCamerasStream');
- });
|