diff --git a/src/Traits/CommonCommand.php b/src/Traits/CommonCommand.php index 92c1f86..b34e8bf 100644 --- a/src/Traits/CommonCommand.php +++ b/src/Traits/CommonCommand.php @@ -252,7 +252,7 @@ protected function replaceViewNames(&$stub, $viewDirectory, $routesPrefix, array * @param string $routesPrefix * @param string $name * - * @return $this + * @return string */ protected function getDotNotationName($viewDirectory, $routesPrefix, $name = 'index') { @@ -272,10 +272,11 @@ protected function getDotNotationName($viewDirectory, $routesPrefix, $name = 'in /** * Gets the stub file. * - *@param string $name + * @param string $name * @param string $template * * @return string + * @throws Exception */ protected function getStubByName($name, $template = null) { diff --git a/templates/default/routes.stub b/templates/default/routes.stub index 615d786..c15e1c0 100644 --- a/templates/default/routes.stub +++ b/templates/default/routes.stub @@ -2,13 +2,13 @@ ->name('[% index_route_name %]'); Route::get('/create','[% controller_name %]@create') ->name('[% create_route_name %]'); - Route::get('/show/{[% model_name_singular_variable %]}','[% controller_name %]@show') + Route::get('/{[% model_name_singular_variable %]}/show','[% controller_name %]@show') ->name('[% show_route_name %]')[% route_id_clause %]; Route::get('/{[% model_name_singular_variable %]}/edit','[% controller_name %]@edit') ->name('[% edit_route_name %]')[% route_id_clause %]; - Route::post('/', '[% controller_name %]@store') + Route::post('/store', '[% controller_name %]@store') ->name('[% store_route_name %]'); - Route::put('[% model_name_snake %]/{[% model_name_singular_variable %]}', '[% controller_name %]@update') + Route::put('/{[% model_name_singular_variable %]}/[% model_name_snake %]/update', '[% controller_name %]@update') ->name('[% update_route_name %]')[% route_id_clause %]; - Route::delete('/[% model_name_snake %]/{[% model_name_singular_variable %]}','[% controller_name %]@destroy') + Route::delete('/{[% model_name_singular_variable %]}/[% model_name_snake %]/delete','[% controller_name %]@destroy') ->name('[% destroy_route_name %]')[% route_id_clause %]; \ No newline at end of file