Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

laravel loop counter

@foreach($items as $key => $item)
  <tr>
  	<td>{{ $loop->iteration }}</td> //its like serial of row 
  	<td>{{ $item->name }}</td>
  	<td>{{ $item->email }}</td>
  </tr>
@endforeach
Source by www.titanwolf.org #
 
PREVIOUS NEXT
Tagged: #laravel #loop #counter
ADD COMMENT
Topic
Name
3+7 =