@extends('layouts.admin') @section('content')

Client Tiers Management

Back to Client

{{ $client->name }} - Learning Tiers

View tier completion statistics for this client.

@if($tiers->count() > 0)
@foreach($tiers as $tier)

{{ $tier->name }}

Tier {{ $tier->id }}
@if($tier->description)
{!! $tier->description !!}
@endif
User Completions: {{ $tier->user_count ?? 0 }}
Status: @if(($tier->user_count ?? 0) > 0) Active @else No Activity @endif
@if($tier->order)
Order: {{ $tier->order }}
@endif @if($tier->level)
Level: {{ $tier->level }}
@endif
@if(($tier->user_count ?? 0) > 0)
Progress {{ $tier->user_count ?? 0 }} users
@endif
@endforeach
@else

No tiers found

No learning tiers are available for this client.

@endif
@endsection