Skip to content

Commit

Permalink
route path issue fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
hafijul233 committed Apr 29, 2024
1 parent aac8eed commit 655dcc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Providers/RouteServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public function boot()
$this->routes(function () use (&$root_prefix) {
Route::prefix("{$root_prefix}api")
->middleware('api')
->group(__DIR__ . '/../routes/api.php');
->group(__DIR__ . '/../../routes/api.php');
});

$this->middlewareGroup('ip_verified', [IpAddressVerified::class])
Expand Down

0 comments on commit 655dcc0

Please sign in to comment.