@if (count($students) > 0)
@foreach ($students as $student)
{{ $student->last_name_std . ' ' . $student->first_name_std }}
@endforeach
@else
No se encontraron resultados
@endif