@extends('adminlte::page')
@section('content_header')
Listado de Periodos Academicos
@stop
@section('content')
| Nro |
Nombre del Periodo |
Acción |
@php
$contador = 1;
@endphp
@foreach($periodos as $periodo)
| {{$contador++}} |
{{$periodo->nombre}} |
|
@endforeach
@stop
@section('css')
@stop
@section('js')
@stop