WIP Review

Total Units: {{ $this->entries->sum('units') }}
Total Hours: {{ number_format($this->entries->sum('hours'), 2) }}
Total Value: £{{ number_format( $this->entries->sum(fn ($entry) => $entry->units * ($entry->user?->wip_unit_rate ?? 0)), 2 ) }}
@forelse($this->entries as $entry) @empty @endforelse
Date Units Hours Recorded By Action Type Value Description
{{ optional($entry->started_at)->format('d/m/Y H:i') }} {{ $entry->units }} {{ $entry->hours }} {{ (($entry->user?->name_first . ' ' . $entry->user?->name_last) ?? 'Unknown') }} {{ ucfirst($entry->activity_type) }} £{{ number_format($entry->value, 2) }} {{ $entry->description }}
No WIP entries recorded.