Browse Source

Added shortcut method to load a designated route's response

Aaron Kuzemchak 13 years ago
parent
commit
115eb8d085
1 changed files with 12 additions and 0 deletions
  1. 12 0
      laravel/routing/route.php

+ 12 - 0
laravel/routing/route.php

@@ -348,5 +348,17 @@ class Route {
 	{
 		Filter::register($name, $callback);
 	}
+	
+	/**
+	 * Calls the specified route and returns its response.
+	 *
+	 * @param  string    $method
+	 * @param  string    $uri
+	 * @return Response
+	 */
+	public static function load($method, $uri)
+	{
+		return Router::route(strtoupper($method), $uri)->call();
+	}
 
 }