@extends('layouts.app') @section('title', 'Dues Settings') @section('page-title', 'Dues Rate Settings') @section('content')
{{-- ── New Settings Form ─────────────────────────────────────────────── --}}
Add New Fiscal Year Settings
@csrf
Format: YYYY-YYYY (e.g. 2025-2026)
{{-- LCI Dues --}}
LCI (International) Dues
$
LCI baseline = $46.00/year
%
%
%
{{-- District & MD --}}
$
$
$
{{-- ── Active Settings Summary ────────────────────────────────────────── --}}
@if($active)
Active: {{ $active->fiscal_year }}
LCI Base Dues ${{ number_format($active->lci_base_dues_annual, 2) }}/yr
District Dues ${{ number_format($active->district_dues_annual, 2) }}/yr
MD Dues ${{ number_format($active->multiple_district_dues_annual, 2) }}/yr
Club Dues ${{ number_format($active->club_dues_annual, 2) }}/yr
Total (Regular) ${{ number_format( $active->lci_base_dues_annual + $active->district_dues_annual + $active->multiple_district_dues_annual + $active->club_dues_annual, 2) }}/yr
Family/Student/Leo-to-Lion get {{ $active->family_lci_discount_pct }}% off LCI portion. Billing: {{ $active->billing_cycle === 'semi_annual' ? 'Semi-Annual' : 'Annual' }}.
@endif {{-- Historical settings --}} @if($settings->count() > 0)
Fiscal Year History
@foreach($settings as $s)
{{ $s->fiscal_year }} {{ $s->is_active ? 'Active' : 'Inactive' }}
${{ number_format($s->lci_base_dues_annual, 2) }} LCI @if(!$s->is_active)
@csrf @method('PATCH')
@endif
@endforeach
@endif
@endsection