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?
With css? Adding some class to that row.
How to add class to that row?
Try this
@foreach($colecctions as $collection)
<tr @if($collection->points) class="red" @endif>
<td></td>
</tr>
@endforeach
Please or to participate in this conversation.