call render method on view when including in blade.

This commit is contained in:
Taylor Otwell 2012-04-13 08:23:11 -05:00
parent bcca8be072
commit f45330a006
1 changed files with 1 additions and 1 deletions

View File

@ -264,7 +264,7 @@ protected static function compile_includes($value)
{
$pattern = static::matcher('include');
return preg_replace($pattern, '$1<?php echo view$2->with(get_defined_vars()); ?>', $value);
return preg_replace($pattern, '$1<?php echo view$2->with(get_defined_vars())->render(); ?>', $value);
}
/**