Update api.php

Typo at line 391 GroupsCOntroller to GroupsController. Was causing an error with the groups view not reflecting the actual groups seen from the database.
This commit is contained in:
TenOfTens 2022-02-01 08:51:34 -06:00 committed by GitHub
parent a65fb63b6b
commit 70eeafd2a3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -389,7 +389,7 @@ Route::group(['prefix' => 'v1', 'middleware' => 'api'], function () {
* Groups API routes
*/
Route::resource('groups',
Api\GroupsCOntroller::class,
Api\GroupsController::class,
['names' =>
[
'index' => 'api.groups.index',
@ -1096,4 +1096,4 @@ Route::group(['prefix' => 'v1', 'middleware' => 'api'], function () {
}); // end fallback routes
}); // end API routes
}); // end API routes