dimanche 7 avril 2019

How to foreach columns inside foreach rows

from the controller I have $rows I wanted to loop through columns inside $rows.

in php its just simple, but I wanted via laravel blade

@foreach($rows as $row)
<tr class="row" id="">
    @foreach($row as $column)
       <td></td>
    @endforeach
</tr>
@endforeach



via Chebli Mohamed

Aucun commentaire:

Enregistrer un commentaire