Skip to content

Commit 9ea5018

Browse files
committed
Merge branch 'develop' of github.com:laravel/laravel into develop
2 parents 9d9d1d0 + 4b97c28 commit 9ea5018

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

laravel/documentation/controllers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Check [the routing page](/docs/routing#controller-routing) for more information
4949
<a name="bundle-controllers"></a>
5050
## Bundle Controllers
5151

52-
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.
52+
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.
5353

5454
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:
5555

laravel/helpers.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,10 @@ function __($key, $replacements = array(), $language = null)
3434
*/
3535
function dd($value)
3636
{
37-
die(var_dump($value));
37+
echo "<pre>";
38+
var_dump($value);
39+
echo "</pre>";
40+
die;
3841
}
3942

4043
/**

0 commit comments

Comments
 (0)