@extends('Shared/layout') @section('title','Tareas') @section('content')
@include('Shared.import',['action'=>url('/Homework/importExcel/1')]) @include('Shared.filter',['action'=>url('/homework')])
@foreach ($state_homeworks as $item)

id) @case(1) style="background-color:rgba(217, 18, 18, 0.8);color:white; border-radius: 10px;" @break @case(2) style="background-color:rgba(0, 100, 0, 0.8);color:white; border-radius: 10px;" @break @case(3) style="background-color:rgb(245, 218, 39);border-radius:10px" @endswitch >       | {{ $item->name }}, {{ number_format($item->id==1?$countpendingTasks:$countdoneTasks) }}

@switch($item->id) @case(1) @include('Shared.tableTasks',['homeworks'=>$pendingTasks]) @break @case(2) @include("Shared.tableTasks",['homeworks'=>$doneTasks]) @break @endswitch
@endforeach
@endsection