@extends('layouts/app') @section('titulo', 'lista de cursos') @section('content') {{-- notificaciones --}}

LISTA DE CURSOS REGISTRADOS

ID NOMBRE HORAS DESCRIPCION INICIO TERMINO ESTADO
@if (session('CORRECTO'))
{{ session('CORRECTO') }}
@endif @if (session('INCORRECTO'))
{{ session('INCORRECTO') }}
@endif @if (session('DUPLICADO'))
{{ session('DUPLICADO') }}
@endif
  Registrar {{--   Descargar Excel --}}
@error('nombre')
{{ $message }}
@enderror @error('estado')
{{ $message }}
@enderror @error('hora')
{{ $message }}
@enderror @error('descripcion')
{{ $message }}
@enderror @error('inicio')
{{ $message }}
@enderror @error('termino')
{{ $message }}
@enderror
@foreach ($datos as $item) {{-- modal de modificar --}} @endforeach
ID NOMBRE HORAS DESCRIPCION INICIO TERMINO ESTADO
{{ $item->id_curso }} {{ $item->nombre }} {{ $item->horas }} {{ $item->descripcion }} {{ $item->inicio }} {{ $item->termino }} @if ($item->estado == 'proximamente') {{ $item->estado }} @else @if ($item->estado == 'encurso') {{ $item->estado }} @else @if ($item->estado == 'finalizado') {{ $item->estado }} @endif @endif @endif
@csrf @method('delete') {{-- --}}
{{ $datos->links('pagination::bootstrap-4') }} Mostrando {{ $datos->firstItem() }} - {{ $datos->lastItem() }} de {{ $datos->total() }} resultados
@endsection