From 17dc411eb479eeffeeafd1975b1161eecca9a38b Mon Sep 17 00:00:00 2001 From: Abdelbassit Darir <85806305+DarirAbdelbassit@users.noreply.github.com> Date: Tue, 24 Oct 2023 01:03:08 +0100 Subject: [PATCH] Update api.php --- routes/api.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/api.php b/routes/api.php index 39ecc07c6..fc359c6fe 100644 --- a/routes/api.php +++ b/routes/api.php @@ -23,5 +23,5 @@ // Keep in mind that prefix should be /api/v1. // Add ONE line to assign 5 resource routes to TaskController // Put one code line here below - + Route::apiResource('/tasks', [TaskController::class])->prefix('/api/v1'); });