We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bffec76 commit 944f12aCopy full SHA for 944f12a
src/app/Http/Controllers/Operations/FetchOperation.php
@@ -23,7 +23,7 @@ protected function setupFetchOperationRoutes($segment, $routeName, $controller)
23
if (count($matches[1])) {
24
foreach ($matches[1] as $methodName) {
25
Route::post($segment.'/fetch/'.Str::kebab($methodName), [
26
- 'as' => $segment.'.fetch.'.Str::snake($methodName, '.'),
+ 'as' => $segment.'.fetch'.Str::studly($methodName),
27
'uses' => $controller.'@fetch'.$methodName,
28
'operation' => 'FetchOperation',
29
]);
0 commit comments