Skip to content

Commit 9fb6ca9

Browse files
authored
Merge pull request #35 from fabiodavel/master
Adds feature that automatically names routes.
2 parents 40594c0 + 2672fac commit 9fb6ca9

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/AdvancedRoute.php

+6
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,12 @@ public static function controller($path, $controllerClassName) {
7272
if (self::stringStartsWith($methodName, $httpMethod)) {
7373
Route::$httpMethod($slug_path, $controllerClassName . '@' . $methodName);
7474

75+
$routeName = strtolower(str_replace('Controller', '', substr($controllerClassName, strrpos($controllerClassName,"\\")+1)));
76+
$routeName .= ".{$httpMethod}.";
77+
$routeName .= str_replace($httpMethod, '', strtolower($methodName));
78+
79+
Route::$httpMethod($slug_path, $controllerClassName . '@' . $methodName)->name($routeName);
80+
7581
$route = new \stdClass();
7682
$route->httpMethod = $httpMethod;
7783
$route->prefix = sprintf("Route::%-4s('%s',", $httpMethod, $slug_path);

0 commit comments

Comments
 (0)