Closed tremby closed 10 years ago
@foreach($things as $thing) highlights properly but @foreach ($things as thing) does not, though it is valid Blade. The @foreach renders in the wrong colour and the contents of the parentheses are not highlighted as PHP.
@foreach($things as $thing)
@foreach ($things as thing)
@foreach
recent rewrite should resolve this issue.
@foreach($things as $thing)
highlights properly but@foreach ($things as thing)
does not, though it is valid Blade. The@foreach
renders in the wrong colour and the contents of the parentheses are not highlighted as PHP.