Files
streamline-emr/docker/statistics/Modules/Hiv/Routes/api.php
T
2025-03-31 03:46:05 +03:00

19 lines
509 B
PHP

<?php
use Illuminate\Support\Facades\Route;
/*
|--------------------------------------------------------------------------
| 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::middleware('auth:api')->get('/hiv', function () {
return "HIV";
});