@extends('layouts.master')
@section('title') Inicio @endsection
@section('content')
@component('components.breadcrumb')
@slot('li_1') Inicio @endslot
@slot('li_2') Listado de Supervición @endslot
@slot('title') Supervición @endslot
@endcomponent
| # |
Docente |
Curso |
Periodo |
Fecha |
Puntaje |
Estado |
Acciones |
@foreach($supervisiones as $i => $s)
| {{ $i + 1 }} |
{{ $s->docente->nombre_completo ?? '-' }} |
{{ $s->curso->nombre ?? '-' }} |
{{ $s->periodo->nombre ?? '-' }} |
{{ $s->fecha->format('d/m/Y') }} |
{{ $s->puntaje }}
|
{{ $s->estado }}
|
|
@endforeach
@endsection
@section('script')
@endsection