Creating alternate colors for table rows

@foreach ($users as $user)
 
<!-- Odd row -->
<tr class="bg-white">
@if ($user->id % 2)
<td class="bg-blue-200 px-6 py-4 whitespace-no-wrap text-sm leading-5 font-medium text-gray-900">
{{$user->name}}
</td>
@else
<td class="px-6 py-4 whitespace-no-wrap text-sm leading-5 font-medium text-gray-900">
{{$user->name}}
</td>
@endif
Sources & More Details:

Self

Edit this note