@extends('layouts.user') @section('title', 'Edit Patroller Schedule') @section('content')

Edit Schedule: {{ $patrollerSchedule->duty_number }}

Back to List
@if ($errors->any())
There were some errors with your submission
@endif
@csrf @method('PUT')

Schedule Details

    @foreach($routes as $route)
  • {{ $route->name }}
  • @endforeach
$

Route Sites ()

Employee & Timing

To Time must be after From Time
Total Job Hours
Duration
    @foreach($employees as $emp)
  • {{ $emp->first_name }} {{ $emp->last_name }} {{ $emp->employee_id ?? '#' . $emp->id }}
    {{ $emp->employee_id ?? '#' . $emp->id }}
  • @endforeach
No employees selected. Search above to add.

Financial Summary

Total Expense
Total Income
Margin

Additional Information

Cancel
@endsection