@extends('layouts.app') @section('content')
@if(auth()->user()->isSuperAdmin() && !isset($company))
Select Company
@else
Tier Groups
@if(auth()->user()->role === 'super_admin' && isset($company)) Change Company @endif
@if($tierGroups->count() > 0)
@foreach($tierGroups as $group) @endforeach
Group Name Description Tiers Clients Status Actions
{{ $group->name }} {{ $group->description ?? 'N/A' }} {{ $group->tiers()->count() }} Tier(s) {{ $group->clients()->count() }} Client(s) @if($group->is_active) Active @else Inactive @endif View Edit
@csrf @method('DELETE')
@else
No tier groups found. Create one now
@endif
@endif
@endsection