Browse Source

added support for named layouts.

Taylor Otwell 13 years ago
parent
commit
8bd740d183
1 changed files with 5 additions and 0 deletions
  1. 5 0
      laravel/routing/controller.php

+ 5 - 0
laravel/routing/controller.php

@@ -293,6 +293,11 @@ abstract class Controller {
 	 */
 	public function layout()
 	{
+		if (starts_with($this->layout, 'name: '))
+		{
+			return View::of(substr($this->layout, 6));
+		}
+
 		return View::make($this->layout);
 	}