@extends('layouts.app') @section('content')
@if ($errors->any()) @endif
Tier Group Details
@if(auth()->user()->isSuperAdmin() && !isset($company))
@error('company_id')
{{ $message }}
@enderror
@else
@csrf @php $companyId = $company->id ?? auth()->user()->company_id; $companyName = $company->name ?? auth()->user()->company->name; @endphp
@error('name')
{{ $message }}
@enderror
@error('description')
{{ $message }}
@enderror
@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
Cancel
@endif
@endsection