@extends('layouts.app') @section('title', 'Labor Management - Blackberry Farm') @section('content')
Track farm labor activities and worker hours
| Date | Worker | Task | Description | Field | Hours | Cost | Quality | Follow-up | Actions |
|---|---|---|---|---|---|---|---|---|---|
| {{ date('M j, Y', strtotime($log->date)) }} | {{ $log->worker_name }} | {{ str_replace('_', ' ', ucwords($log->task_type, '_')) }} | {{ Str::limit($log->task_description, 50) }} | {{ $log->field_name ?? '-' }} | {{ number_format($log->hours_worked, 1) }}h | ${{ $log->total_cost ? number_format($log->total_cost, 0) : '-' }} | @if($log->quality_rating) @else - @endif | @if($log->follow_up_required) {{ $log->follow_up_date ? date('M j', strtotime($log->follow_up_date)) : 'Yes' }} @else - @endif | View Edit |
Start tracking farm labor to analyze productivity and costs.
📝 Log First Activity