@extends('layouts.landing') @section('title', 'Acta de Calificaciones') @section('head') @endsection @section('content')
| # | Alumno | @foreach ($tareas as $tarea)
{{ Str::limit($tarea->titulo, 25) }}
|
@endforeach
Promedio Final |
|---|---|---|---|
| {{ $fila++ }} | {{ $nombre }} | @foreach ($tareas as $tarea) @php $data = $calificaciones[$tarea->id]; @endphp@if ($data['valor'] !== null) {{ number_format($data['valor'], 1) }} @elseif ($data['status'] === 'pendiente') @elseif ($data['status'] === 'sin_subir') — @endif | @endforeach@if ($promedio !== null) {{ number_format($promedio, 1) }} @else S/C @endif |