From fdf87ef59ad480485c1190bde1b44de91f4b6e3c Mon Sep 17 00:00:00 2001 From: Tb Fajri Date: Thu, 20 Jun 2024 09:46:35 +0700 Subject: [PATCH] tambah api list hospital --- Modules/Internal/Routes/api.php | 1 + 1 file changed, 1 insertion(+) diff --git a/Modules/Internal/Routes/api.php b/Modules/Internal/Routes/api.php index 1c5d310f..f7de0ef3 100644 --- a/Modules/Internal/Routes/api.php +++ b/Modules/Internal/Routes/api.php @@ -383,4 +383,5 @@ Route::prefix('internal')->group(function () { Route::get('options', [OptionController::class, 'index']); Route::get('final-log/{id}', [ClaimController::class, 'downloadFinalLog'])->name('claim.download-final-log'); + Route::get('hospitals', [RequestLogController::class, 'hospitals']); });