@extends('layouts.teamlead') @section('title', 'Графік: ' . $operatorName . ' (' . strtoupper($shift) . ')') @push('head') @endpush @section('content') @php $shiftLabel = [ 'day' => 'денна', 'evening' => 'вечірня', 'night' => 'нічна', ][$shift] ?? $shift; $score = $shiftScore ?? null; $scoreClass = 'good'; if (!is_null($score)) { if ($score < 60) { $scoreClass = 'bad'; } elseif ($score < 90) { $scoreClass = 'mid'; } else { $scoreClass = 'good'; } } @endphp
| Дата | Сума ($) |
|---|---|
| {{ \Carbon\Carbon::parse($r->work_date)->format('Y-m-d') }} | {{ number_format($r->total, 2) }} |
| Разом | {{ number_format($sum, 2) }} |
| Середнє | {{ number_format($avg, 2) }} |
| Макс. | {{ number_format($max, 2) }} |
| Мін. | {{ number_format($min, 2) }} |