Added an @break to blade to break out of loops.
Signed-off-by: Jason Lewis <jason.lewis1991@gmail.com>
This commit is contained in:
parent
681f80eafb
commit
b6cc836bf4
|
@ -278,7 +278,7 @@ protected static function compile_structure_openings($value)
|
||||||
*/
|
*/
|
||||||
protected static function compile_structure_closings($value)
|
protected static function compile_structure_closings($value)
|
||||||
{
|
{
|
||||||
$pattern = '/(\s*)@(endif|endforeach|endfor|endwhile)(\s*)/';
|
$pattern = '/(\s*)@(endif|endforeach|endfor|endwhile|break)(\s*)/';
|
||||||
|
|
||||||
return preg_replace($pattern, '$1<?php $2; ?>$3', $value);
|
return preg_replace($pattern, '$1<?php $2; ?>$3', $value);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue