I need to print results in a decreasing way
controller:
$servicios = \App\Models\Eventos::All()->sortByDesc('hora');
blade.php
  @foreach ($servicios as $hoy)
                                        <tr>
                                            <td class="checkbox-column text-center"> </td>
                                            <td></td>
                                            <td></td>
                                            <td></td>
                                            <td></td>
                                            <td></td>
                                            <td class="text-center"><span class="shadow-none ">
                                            @if($hoy->prioridad == 'badge badge-primary') 
                                          Normal
                                            @elseif($hoy->prioridad == 'badge badge-warning') 
                                           Prioridad
                                             @elseif($hoy->prioridad == 'badge badge-success') 
                                          Personal
                                             @elseif ($hoy->prioridad == 'badge badge-danger') 
                                           Urgente
          
                                            @endif
                                            
                                            </span></td>
                                        
                                        @endforeach
the problem is that it does not print with the foreach with the DESC order
via Chebli Mohamed

 















