@extends('layouts.admin') @section('title', 'Command & Operational Protocols') @section('content')

Operational Rules

Standardize deployment timelines & financial logistics

@if(session('success'))
{{ session('success') }}
@endif
@csrf

Pay Protocol Baseline

Define organization-wide default wage types

@foreach($companies as $company)
{{ substr($company->name, 0, 2) }}

{{ $company->name }}

@endforeach

Mission Disclosure Matrix

Job visibility window (minutes before mission start)

@foreach($jobRoles as $role) @endforeach @foreach($companies as $company) @foreach($jobRoles as $role) @php $setting = $company->visibilitySettings->where('job_role_id', $role->id)->first(); @endphp @endforeach @endforeach
Operational Unit {{ $role->name }}
{{ substr($company->name, 0, 1) }}
{{ $company->name }}
min

Attendance Protocol

Define thresholds for attendance monitoring

MINUTES

If an employee checks in this many minutes after start time, it will be flagged as LATE.

Mission Notes Protocol

Configure intervals for automated check-in notes

Minutes

Sets how often the system prompts or generates mission notes

Shift Duration & Overtime

Regulate mandatory caps and overtime triggers

Hours

Maximum hours allowed for a single deployment

Hours

Hours beyond this limit will be calculated as overtime

@endsection