@extends('admin.layouts.app') @section('title', 'Logros') @section('page_title', 'Logros') @section('content')

Logros

Agregar
Logros Habilitados Deshabilitados Ir a pag. {{ $rows->currentPage() }} / {{ $rows->lastPage() }}
@forelse($rows as $r) @empty @endforelse
Grado Asignatura Descripción Periodo Nivel de Calificación
{{ trim((string) $r->grado_nombre) }} {{ mb_strtoupper((string) $r->asignatura_nombre) }} {{ trim((string) $r->concepto) }}
Creado por: {{ $r->creado_por ?: 'N/A' }} ({{ $r->created_at ?: '-' }}) Modificado por: {{ $r->modificado_por ?: 'N/A' }} ({{ $r->updated_at ?: '-' }})
{{ $r->periodo_nombre ?: '-' }} {{ $r->nivel_calificacion }}
Sin logros para los filtros aplicados.
@if($rows->onFirstPage()) « Anterior @else « Anterior @endif @for($page = 1; $page <= $rows->lastPage(); $page++) @if($page === 1 || $page === $rows->lastPage() || ($page >= $rows->currentPage()-2 && $page <= $rows->currentPage()+2)) @if($page === $rows->currentPage()) {{ $page }} @else {{ $page }} @endif @elseif($page === $rows->currentPage()-3 || $page === $rows->currentPage()+3) ... @endif @endfor @if($rows->hasMorePages()) Siguiente » @else Siguiente » @endif
@endsection