This commit is contained in:
ivan-sim
2024-01-10 11:22:07 +07:00
parent a8686c07a7
commit 0a2c617581
13 changed files with 147 additions and 24 deletions

View File

@@ -60,7 +60,7 @@ Route::prefix('v1')->group(function() {
//Notification
Route::controller(NotificationController::class)->group(function() {
//get notifications
Route::get('notifications/{hospital_id}', 'getNotifications');
Route::get('notifications/{user_id}', 'getNotifications');
//Set read notification
Route::post('set-read-notification', 'setReadNotification');
});