@extends('layouts.master') @section('title') {{ $threshold->exists ? 'Edit Tier' : 'New Tier' }} @endsection @section('content') @component('components.breadcrumb') @slot('li_1') Approval Thresholds @endslot @slot('title') {{ $threshold->exists ? 'Edit Tier' : 'New Tier' }} @endslot @endcomponent @if($errors->any())
@endif @php $selected = old('required_approvals', $threshold->required_approvals ?? []); @endphp
@csrf @if($threshold->exists) @method('PUT') @endif
Approval Threshold
Inclusive lower bound.
Inclusive upper bound. Blank = no ceiling (top tier).
@foreach(\App\Models\ApprovalThreshold::approverRoleOptions() as $role => $roleLabel)
@endforeach
Approvals are applied in workflow order regardless of selection order.
is_active ?? true))>
@endsection