mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-18 18:40:12 +00:00
Fix route name.
This commit is contained in:
@@ -104,7 +104,7 @@ Route::group(
|
|||||||
'as' => 'api.v2.accounts.',
|
'as' => 'api.v2.accounts.',
|
||||||
],
|
],
|
||||||
static function (): void {
|
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']);
|
Route::get('{account}', ['uses' => 'ShowController@show', 'as' => 'show']);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
Reference in New Issue
Block a user