@extends('layouts.app') @section('title', 'Fee Management') @section('content') @verbatim @endverbatim

Fee Management

Update license fees — changes take effect immediately on new invoices.

👁 View Public Fee Schedule
@if(session('success'))
✓ {{ session('success') }}
@endif {{-- ── FIXED FEES ── --}}
Fixed Fees
@foreach($localFees as $fee) @endforeach @foreach($foreignFees as $fee) @endforeach
Fee Type Company Type 12 Months (AUD) 6 Months (AUD)
{{ $feeLabels[$fee->fee_type] ?? ucfirst(str_replace('_',' ',$fee->fee_type)) }} Local
@csrf @method('PATCH') $
@csrf @method('PATCH') $
{{ $feeLabels[$fee->fee_type] ?? ucfirst(str_replace('_',' ',$fee->fee_type)) }} Foreign
@csrf @method('PATCH') $
@csrf @method('PATCH') $
{{-- ── VESSEL SIZES ── --}}
Vessel Size Fees
@foreach($vesselSizes as $vs) @csrf @method('PATCH') @endforeach
Vessel Size Local (AUD) Foreign / Semi-Foreign (AUD)
12 Months 6 Months 12 Months 6 Months
{{ $vs->label }}
$
$
$
$
{{-- ── HARVESTING METHODS ── --}}
Harvesting Method Fees
@foreach($harvestingMethods as $hm) @csrf @method('PATCH') @endforeach
Method Local (AUD) Foreign / Semi-Foreign (AUD)
12 Months 6 Months 12 Months 6 Months
{{ $hm->name }}{{ $hm->is_other ? ' (per method)' : '' }}
$
$
$
$
{{-- ── FISH FAMILIES ── --}}
Fish Family Fees
@foreach($fishFamilies as $ff) @csrf @method('PATCH') @endforeach
Fish Family Local (AUD) Foreign / Semi-Foreign (AUD)
12 Months 6 Months 12 Months 6 Months
{{ $ff->name }}{{ $ff->is_other ? ' (per species)' : '' }}
$
$
$
$
@endsection