@php $primaryColor = '#1B4C9B'; $accentColor = '#102B63'; $mutedColor = '#475569'; $borderColor = '#CBD5E0'; $tableHeaderColor = '#CBD5F5'; $tableAltColor = '#F8FAFC'; $resourceType = strtolower($resourceType ?? '') === 'interna' ? 'Interna' : 'Esterna'; @endphp Foglio giornate - {{ $userName }} - {{ $monthLabel ?? ($monthName ?? '') }}
@if (!empty($logoPath) && file_exists($logoPath)) Logo IUL @endif
Foglio Giornate Lavorative
Nome dell'affidatario
{{ $assignee }}
Nome
{{ $userName }}
Ruolo
{{ $userRole ?: '—' }}
Programma/Progetto
{{ $programName }}
Mese
{{ $monthName }} {{ $year }}
Risorsa
Interna
Esterna
Relazione sull'attività svolta
{{ $activitySummary }}
@foreach ($dailyRows as $row) @php $isUnavailability = $row['is_unavailability'] ?? false; $rowStyle = $isUnavailability ? 'background: #F1F5F9;' : ''; $hoursDisplay = $row['hours'] > 0 ? number_format($row['hours'], 2, ',', '.') : ''; $activityText = $row['activity'] ?? ''; @endphp @endforeach
Data Luogo svolgimento attività H giornata Attività svolta
{{ $row['date']->format('d/m/Y') }} {{ $row['location'] }} {{ $hoursDisplay }} {{ $activityText }}
Totale ore {{ number_format($totalHours, 2, ',', '.') }}

Indicare il soggetto del partenariato responsabile della compilazione del documento in oggetto.

@if(!($for_yousign ?? false))
Data ___________________
Firma Risorsa
Data ___________________
Firma Responsabile
@endif @include('pdf.partials.yousign-signature-page', [ 'for_yousign' => $for_yousign ?? false, 'singleSigner' => true, 'right_signer_title' => 'Per accettazione', 'right_signer_name' => $userName ?? '______________', 'right_signature_date' => now()->timezone(config('app.timezone', 'Europe/Rome'))->format('d/m/Y'), 'right_signature_date_label' => 'Data', 'right_signature_date_margin_bottom' => 6, 'right_signer_name_margin_bottom' => 8, 'right_block_top' => 190, 'signature_box_margin_top' => 6, ])