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

Create Patroller Schedule

Create a new patrol schedule and assign routes.

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

Schedule Details

{{ $nextDutyNumber }}
    @foreach($routes as $route)
  • {{ $route->name }}
  • @endforeach
$
Repeat this schedule daily until this date
Select days to skip during the schedule period

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