@extends('layouts.app') @section('title', 'My Timesheet') @section('breadcrumb')Timesheet@endsection @section('content')
Track your working hours and view your time entries
| Date | Task | Job | Duration | @if(auth()->user()->hourly_rate)Amount | @endifStatus | Notes | |
|---|---|---|---|---|---|---|---|
| {{ $entry->started_at->format('d M Y H:i') }} | {{ $entry->taskType?->name ?? '—' }} | {{ $entry->job?->job_number ?? '—' }} | {{ $entry->elapsed }} | @if(auth()->user()->hourly_rate)${{ number_format($entry->duration_hours * auth()->user()->hourly_rate, 2) }} | @endif{{ ucfirst($entry->status) }} | {{ $entry->notes ?? '—' }} | @if($entry->status !== 'running' && !$entry->invoiced_in) @endif |
| No time entries yet. Start your first timer above. | |||||||