From c7890bcdc3fb8febd0664ec98d2e61b68c0b3724 Mon Sep 17 00:00:00 2001 From: J Bruni Date: Sun, 29 Jul 2012 09:01:16 -0300 Subject: [PATCH] Update laravel/documentation/controllers.md Included missing verb in "Bundles can easily configured" sentence. --- laravel/documentation/controllers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/laravel/documentation/controllers.md b/laravel/documentation/controllers.md index 220c10af..0f8555f2 100644 --- a/laravel/documentation/controllers.md +++ b/laravel/documentation/controllers.md @@ -49,7 +49,7 @@ ## Controller Routing ## 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: