From 7a134781f20eeec3882e398d61a9c88988de892d Mon Sep 17 00:00:00 2001 From: James Cole Date: Thu, 7 Mar 2024 06:01:39 +0100 Subject: [PATCH] Fix route name. --- routes/api.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/api.php b/routes/api.php index f74176c2ed..0bf6c67c65 100644 --- a/routes/api.php +++ b/routes/api.php @@ -104,7 +104,7 @@ Route::group( 'as' => 'api.v2.accounts.', ], static function (): void { - Route::get('', ['uses' => 'IndexController@index', 'as' => 'show']); + Route::get('', ['uses' => 'IndexController@index', 'as' => 'index']); Route::get('{account}', ['uses' => 'ShowController@show', 'as' => 'show']); } );