👤 Worker Information
Worker:
{{ $laborLog->worker_name }}
Date:
{{ date('M j, Y', strtotime($laborLog->date)) }}
Work Hours:
{{ date('g:i A', strtotime($laborLog->start_time)) }} -
{{ date('g:i A', strtotime($laborLog->end_time)) }}
({{ number_format($laborLog->hours_worked, 1) }}h)
@if($laborLog->hourly_rate)
Hourly Rate:
${{ number_format($laborLog->hourly_rate, 2) }}/hour
@endif
@if($laborLog->total_cost)
Total Cost:
${{ number_format($laborLog->total_cost, 2) }}
@endif
@if($laborLog->supervisor)
Supervisor:
{{ $laborLog->supervisor }}
@endif
🔧 Task Details
Task Type:
{{ str_replace('_', ' ', ucwords($laborLog->task_type, '_')) }}
Description:
{{ $laborLog->task_description }}
@if($laborLog->field_name)
Field:
{{ $laborLog->field_name }}
@endif
@if($laborLog->plant_ids)
Plant IDs:
{{ $laborLog->plant_ids }}
@endif
@if($laborLog->quantity_completed)
Quantity Completed:
{{ number_format($laborLog->quantity_completed, 2) }}
{{ $laborLog->completion_unit ?? 'units' }}
@endif
@if($laborLog->quality_rating)
Quality Rating:
{{ ucfirst($laborLog->quality_rating) }}
@endif
🌤️ Work Conditions
@if($laborLog->weather_conditions)
Weather:
{{ str_replace('_', ' ', ucwords($laborLog->weather_conditions, '_')) }}
@endif
@if($laborLog->temperature_f)
Temperature:
{{ $laborLog->temperature_f }}°F
@endif
@if($laborLog->equipment_used)
Equipment Used:
{{ $laborLog->equipment_used }}
@endif
@if($laborLog->materials_used)
Materials Used:
{{ $laborLog->materials_used }}
@endif