Back
Assign Extra Work
@if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@csrf {{-- Staff Selection --}}
Select Staff
*
Select All
Clear All
@forelse($staffList ?? [] as $staff)
{{ strtoupper(substr($staff->first_name ?? 'S', 0, 1)) }}
{{ $staff->first_name }} {{ $staff->last_name }}
{{ $staff->role->name ?? 'Staff' }}
@empty
No staff available
@endforelse
Select one or more staff members to assign extra work
{{-- Work Details --}}
Work Details
Work Date
*
Work Type
-- Select Type --
@foreach($workTypes ?? [] as $type)
{{ $type->name }}
@endforeach
Different types have different pay multipliers
Time In
Time Out
Hours
*
Reason / Description
{{ old('reason') }}
Cancel
Assign Extra Work