-1
In my view
, welcome.blade.php
I am getting a parser error in the following HTML snippet:
<div class="single_service_left">
<img src="{{ asset('images/flaticon4.png') }}" alt="" />
</div>
Until then it seems perfectly normal, but the following error is presented:
Parse error: syntax error, Unexpected '')))? >" alt="" />' (T_CONSTANT_ENCAPSED_STRING), expecting ',' or ')'
And the debugger
points to the line that would be "parsed" as follows;
<div class="single_service_left">
<img src="<?php echo e(asset('images/flaticon4.png')); ?>" alt="" />
</div>
The PHP version I’m using is 7.1