@extends('layouts.app') @section('content')
Tier Group Details
@csrf @method('PUT')
@error('name')
{{ $message }}
@enderror
@error('description')
{{ $message }}
@enderror
calculation_type) === \App\Models\TierGroup::TYPE_FIXED_BRACKET ? 'checked' : '' }}>
calculation_type) === \App\Models\TierGroup::TYPE_MINIMUM_EXCESS ? 'checked' : '' }}>
calculation_type) === \App\Models\TierGroup::TYPE_MINIMUM_PROGRESSIVE ? 'checked' : '' }}>
@error('calculation_type')
{{ $message }}
@enderror
Used by the NWRB Section 18 report to break active service connections down into residential, commercial/industrial and public taps. Clients inherit this from their tier group. @error('nwrb_classification')
{{ $message }}
@enderror
is_active) ? 'checked' : '' }}>
Related Data:
  • {{ $tierGroup->tiers()->count() }} Tier(s) assigned
  • {{ $tierGroup->clients()->count() }} Client(s) assigned
Cancel
Associated Tiers
@if($tierGroup->tiers->count() > 0) @foreach($tierGroup->tiers as $tier) @endforeach
Tier Name From (units) To (units) Price Per Unit
{{ $tier->name }} {{ $tier->min_units }} {{ $tier->max_units }} {{ number_format($tier->price_per_unit, 2) }}
@else

No tiers assigned to this group yet.

@endif
Associated Clients
@if($tierGroup->clients->count() > 0) @foreach($tierGroup->clients as $client) @endforeach
Client Name Account No
{{ $client->name }} {{ $client->account_number }}
@else

No clients assigned to this group yet.

@endif
@endsection @section('scripts') @endsection