@extends('pdf.base') @section('content')

{{ $project['name'] }}

Comparatif temps passé / temps vendu

{{ now()->format('d.m.Y H\hi') }} @foreach($types_tasks as $type => $type_tasks) @foreach($type_tasks->tasks as $k => $task) @endforeach @endforeach
Heures vendues Heures passées Delta Performance
{{ $type }} {{ $type_tasks->estimated_hours }} {{ $type_tasks->time_spent }} {{ $type_tasks->delta }} {{ $type_tasks->percent }}%
{{ $task['subject'] }} {{ $task['estimated_hours'] }} {{ $task['time_spent'] }} {{ $task['delta'] }} {{ $task['percent'] }}%
Total {{ $total->estimated_hours }} {{ $total->time_spent }} {{ $total->delta }} {{ $total->percent }}%
@endsection