I try to walk a variable using the helpers of Laravel but it trhows an error, and when I do the same with html tags it works correctly.
{{ Form::select('categoria', array(
@foreach($enlaceid as $categoria)
$categoria->id => $categoria->nombre {{-- I tryed too with englobing with {{ }}
)) }}
@endforeach
<select name="categoria">
@foreach($enlaceid as $categoria)
<option value= " {{ $categoria->id }} "> {{$categoria->nombre}} </option>
@endforeach
</select>