@extends('layouts.app') @section('title', 'Dues Calculator') @section('page-title', 'Dues Calculator') @section('content')
Calculate dues for any member category. @if($settings) Active Fiscal Year: {{ $settings->fiscal_year }} @endif
| LCI International Dues @if($breakdown['lci_discount_pct'] > 0) {{ $breakdown['lci_discount_pct'] }}% discount applied @endif | ${{ number_format($breakdown['lci_amount'], 2) }} |
| District 306 B2 Dues | ${{ number_format($breakdown['district_amount'], 2) }} |
| Multiple District (MD) Dues | ${{ number_format($breakdown['md_amount'], 2) }} |
| Club Dues | ${{ number_format($breakdown['club_amount'], 2) }} |
| Total Due ({{ $breakdown['currency'] }}) | ${{ number_format($breakdown['total_amount'], 2) }} |
| Category | LCI Discount | Semi-Annual | Annual Total |
|---|---|---|---|
| {{ ucwords(str_replace('_', ' ', $cat)) }} | @if($calc['lci_discount_pct'] > 0) {{ $calc['lci_discount_pct'] }}% off @else — @endif | ${{ number_format($calc['total_amount'], 2) }} | ${{ number_format($calc['total_amount'] * 2, 2) }} |