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

19 lines
523 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('/eye_clinic', function () {
return "Eye Clinic";
});