|
@@ -354,7 +354,11 @@ class GenController {
|
|
|
$text = str_replace("_ACTION_LINKS_VIEW_", "{$controller->root}/{$controller->parentControllerName}/actions", $text);
|
|
|
}
|
|
|
else {
|
|
|
- $text = str_replace("_SUB_VIEW_", "Content from<br><b>{$controller->root}/{$controller->name}/{$method->name}.blade.php</b>", $text);
|
|
|
+ $text = str_replace("_SUB_VIEW_",
|
|
|
+ "Controller: <b>{$controller->name}</b><br>" .
|
|
|
+ "Action: <b>{$method->name}()</b><br>" .
|
|
|
+ "View: <b>{$controller->root}/{$controller->name}/{$method->name}.blade.php</b><br>",
|
|
|
+ $text);
|
|
|
}
|
|
|
return $text;
|
|
|
}
|