@extends('layouts.app') @section('title','New Timesheet') @section('page-title','Timesheets') @push('styles') @endpush @section('content')
@csrf
{{-- Day entries --}} @foreach($entries as $i => $entry) @php $date = \Carbon\Carbon::parse($entry['entry_date']); $isToday = $date->isToday(); @endphp
{{ $date->format('l') }} @if($isToday) Today @endif
{{ $date->format('d M Y') }}
h
@endforeach
{{-- Sidebar --}}
Weekly Summary
40.0
Total Hours
{{-- Filled by JS --}}
Cancel
Tip: Save as draft if you have not finished for the week. Submit when your week is complete — your supervisor will then review and approve.
@endsection @push('scripts') @endpush