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

19 lines
517 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('/finance', function () {
return "Finance";
});