@extends('layouts.app') @section('title','Edit Timesheet — '.$timesheet->reference) @section('page-title','Timesheets') @push('styles') @endpush @section('content') @if($timesheet->status === 'rejected' && $timesheet->rejection_notes)
Rejected — Feedback from your supervisor
{{ $timesheet->rejection_notes }}
@endif
@csrf @method('PUT')
@foreach($timesheet->entries as $i => $entry) @php $date = $entry->entry_date; @endphp
{{ $date->format('l') }}
{{ $date->format('d M Y') }}
h
No deliverables expected — hours set to 0.
@endforeach
Weekly Summary
{{ number_format($timesheet->total_hours, 1) }}
Total Hours
Cancel
@endsection @push('scripts') @endpush