@extends('layouts.landing') @section('head') @include('layouts._partials.tablaStyle') @endsection @section('title', 'Tareas') @section('content')
| Título | Fecha límite | Pendientes | Calificadas | Total alumnos | Opciones |
|---|---|---|---|---|---|
| {{ $tarea->titulo }} | @if ($tarea->fecha_entrega) {{ \Carbon\Carbon::parse($tarea->fecha_entrega)->format('d/m/Y') }} @if (\Carbon\Carbon::parse($tarea->fecha_entrega)->isPast()) Vencida @else Activa @endif @else Sin fecha @endif | {{ $tarea->pendientes_count }} | {{ $tarea->calificadas_count }} | {{ $tarea->entregas_count }} | Ver @hasrole('Docente') Editar @endhasrole |