Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

777not888's avatar

How to change the color of some rows on the resource page?

I need the entries from the database in which the 'points' field is not null to be displayed in red? How to do it?

0 likes
3 replies
RamjithAp's avatar

Try this

@foreach($colecctions as $collection) 
<tr @if($collection->points) class="red" @endif>
  <td></td>
</tr>
@endforeach

Please or to participate in this conversation.