syntax error, unexpected ')', expecting '('
in 95fa8dfb635d690d28edcc5a99f8d587929a8d61.php
The route that leaves by clicking on it is
C: \ CursoLaravel \ sisSales \ storage \ framework \ views (line 33)
and this is the line that redirects me to the link (this is line 33):
<div class="form-group">
<label>Categoria</label>
<select name="idcategoria" class="form-control">
<?php $__currentLoopData = $categoria; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as cat): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<option value="<?php echo e($cat->idcategoria); ?>"><?php echo e($cat->nombre); ?></option>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</select>
</div>