@extends('admin.layouts.resource-layout') @section('title')

Табель свод

@endsection @section('resource-content')
@if($items->isNotEmpty()) @foreach($dates as $date) @endforeach @foreach ($items as $item) @foreach($dates as $date) @php $statistic = $item->statistics()->where('date', $date->format('Y-m-d'))->first() @endphp @endforeach @endforeach
Фио{{ $date->format('d.m') }}
{{ $item->title ?? '' }}{{ $statistic ? $statistic->count : '' }}
@endif
@endsection