@extends('both.template') @section('title', 'TACHES GENERALES | OPTIMIA') @section('styleSheets') @endsection @section('content')

Followers

Progression

Tâches à faire {{ $tasks->where('idTaskType', '1')->count() }}
@foreach($tasks as $task) @if ($task->idTaskType == 1)
{{ $task->taskName }}
70%
@endif @endforeach
En cours {{ $tasks->where('idTaskType', '2')->count() }}
@foreach($tasks as $task) @if ($task->idTaskType == 2)
{{ $task->taskName }}
70%
@endif @endforeach
Terminée {{ $tasks->where('idTaskType', '3')->count() }}
@foreach($tasks as $task) @if ($task->idTaskType == 3)
{{ $task->taskName }}
70%
@endif @endforeach
A revoir {{ $tasks->where('idTaskType', '4')->count() }}
@foreach($tasks as $task) @if ($task->idTaskType == 4)
{{ $task->taskName }}
70%
@endif @endforeach
{{ csrf_field() }}
@endsection @section('scriptsSheets') @endsection