random character -> characters ; person -> people

This commit is contained in:
Irfan 2020-07-22 21:07:53 +05:00
parent 66ecebe247
commit 06af87f9bf

View File

@ -456,11 +456,11 @@ $router->group(
'uses' => 'RandomController@manga',
]);
$router->get('/character', [
$router->get('/characters', [
'uses' => 'RandomController@characters',
]);
$router->get('/person', [
$router->get('/people', [
'uses' => 'RandomController@people',
]);
}