Merge branch 'develop' of github.com:laravel/laravel into develop

This commit is contained in:
Dayle Rees 2012-07-31 14:37:07 +01:00
commit 9ea5018372
2 changed files with 5 additions and 2 deletions

View File

@ -49,7 +49,7 @@ ## Controller Routing
<a name="bundle-controllers"></a> <a name="bundle-controllers"></a>
## Bundle Controllers ## Bundle Controllers
Bundles are Laravel's modular package system. Bundles can easily configured to handle requests to your application. We'll be going over [bundles in more detail](/docs/bundles) in another document. Bundles are Laravel's modular package system. Bundles can be easily configured to handle requests to your application. We'll be going over [bundles in more detail](/docs/bundles) in another document.
Creating controllers that belong to bundles is almost identical to creating your application controllers. Just prefix the controller class name with the name of the bundle, so if your bundle is named "admin", your controller classes would look like this: Creating controllers that belong to bundles is almost identical to creating your application controllers. Just prefix the controller class name with the name of the bundle, so if your bundle is named "admin", your controller classes would look like this:

View File

@ -34,7 +34,10 @@ function __($key, $replacements = array(), $language = null)
*/ */
function dd($value) function dd($value)
{ {
die(var_dump($value)); echo "<pre>";
var_dump($value);
echo "</pre>";
die;
} }
/** /**