@extends('layouts.app') @section('content') @if($isSuperAdmin && !$selectedCompanyId)
Select a company to manage its pricing tiers
Select a tier group for {{ $company->name }} ({{ $company->currency_code }}) @if($isSuperAdmin && $selectedCompanyId) Back to Companies @endif
{{ $tierGroup->name }} - {{ $company->name }} ({{ $company->currency_code }}) @if($selectedCompanyId) Back to Groups @endif
@if(session('success'))| Order | Tier Name | Min Units | Max Units | Price/Unit | Status | Actions |
|---|---|---|---|---|---|---|
|
{{ $tier->name }} {{ $tier->description }} |
{{ $tier->min_units }} | {{ $tier->max_units ? $tier->max_units . ' units' : 'Unlimited' }} | {{ $company->currency_code }} {{ number_format($tier->price_per_unit, 2) }} | @if($tier->is_active) Active @else Inactive @endif | Edit |