Added a helper method to render a given view

Signed-off-by: Max Zender <maxzender@gmail.com>
This commit is contained in:
Max Zender 2012-03-09 17:05:29 +01:00
parent 18f91414bb
commit 5eece1f33f
1 changed files with 12 additions and 0 deletions

View File

@ -409,4 +409,16 @@ function with($object)
function has_php($version)
{
return version_compare(PHP_VERSION, $version) >= 0;
}
/**
* Render the given view.
*
* @param string $view
* @param array $data
* @return string
*/
function render($view, $data = array())
{
return Laravel\View::make($view, $data)->render();
}