TAREAS 1ER. BIMESTRE

@foreach ($tareas as $t) @if ($t->bimestre === 1)

{{$t->nombre}}

VALOR: {{$t->valor}}

FECHA DE ENTREGA: {{$t->fecha_de_entrega}}

FECHA DE REGISTRO{{$t->created_at}}

@method('DELETE') @csrf
@endif @endforeach

TAREAS 2DO. BIMESTRE

@foreach ($tareas as $t) @if ($t->bimestre === 2)

{{$t->nombre}}

VALOR: {{$t->valor}}

FECHA DE ENTREGA: {{$t->fecha_de_entrega}}

FECHA DE REGISTRO{{$t->created_at}}

@method('DELETE') @csrf
@endif @endforeach

TAREAS 3ER. BIMESTRE

@foreach ($tareas as $t) @if ($t->bimestre === 3)

{{$t->nombre}}

VALOR: {{$t->valor}}

FECHA DE ENTREGA: {{$t->fecha_de_entrega}}

FECHA DE REGISTRO{{$t->created_at}}

@method('DELETE') @csrf
@endif @endforeach

TAREAS 4TO. BIMESTRE

@foreach ($tareas as $t) @if ($t->bimestre === 4)

{{$t->nombre}}

VALOR: {{$t->valor}}

FECHA DE ENTREGA: {{$t->fecha_de_entrega}}

FECHA DE REGISTRO{{$t->created_at}}

@method('DELETE') @csrf
@endif @endforeach