Open mortenscheel opened 2 months ago
Example:
@foreach (collect()->where('foo', 'bar')->where('bar', 'foo') as $item) <!-- body --> @endforeach
Formatted:
@foreach (collect()->where('foo', 'bar')->where('bar', 'foo')as $item) <!-- body --> @endforeach
The space before as has been removed. Running php artisan view:cache fails:
as
php artisan view:cache
Illuminate\Contracts\View\ViewCompilationException Malformed @foreach statement.
Example:
Formatted:
The space before
as
has been removed. Runningphp artisan view:cache
fails: