Hello, for some reason, the package cause an issue to ignore code after the use of // inside php code of the blade template
example: hello.blade.php
<?php
$myArray = array() //create array
for($i;$i<10;$i++){
$mArray[] = $i;
}
echo $myArray;
?>
This code will not be run inside the blade template.
Hello, for some reason, the package cause an issue to ignore code after the use of // inside php code of the blade template example: hello.blade.php <?php $myArray = array() //create array for($i;$i<10;$i++){ $mArray[] = $i; } echo $myArray; ?>
This code will not be run inside the blade template.