Added shortcut method to load a designated route's response
This commit is contained in:
parent
2b4ab94e6b
commit
115eb8d085
|
@ -348,5 +348,17 @@ public static function filter($name, Closure $callback)
|
|||
{
|
||||
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();
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue