{{-- @extends('admin.layout.app') @section('body')

New Timesheet

@if ($errors->any())
    @foreach ($errors->all() as $e)
  • {{ $e }}
  • @endforeach
@endif
@csrf
Rate will auto-fill from selected machinery.
Cancel
@endsection --}} @extends('admin.layout.app') @section('body')
{{-- Flash alerts --}} @if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif {{-- Validation summary --}} @if ($errors->any())
There were some problems with your input:
@endif

New Machinery Timesheet (Bulk)

Record hours for multiple machines by shift
Back
@csrf
@error('shift')
{{ $message }}
@enderror
@error('entry_datetime')
{{ $message }}
@enderror
@foreach ($machineries as $index => $m) @endforeach
Machinery Hours Worked Overtime Hours Hourly Rate Total Notes
{{ $m->name ?? ('#'.$m->id) }} {{-- Per-row rate payload (safe JSON) --}} (float)$m->hourly_rate]) }}'> hourly_rate) }}" readonly> Auto from machinery
Cancel
@endsection @section('scripts') @endsection