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

License Fee Schedule

Local Fish Export / Re-export License — Republic of Kiribati, Ministry of Fisheries & Ocean Resources

💡 All amounts are in Australian Dollars (AUD). "Others" fees are multiplied by the number of methods / species selected. Semi-foreign licenses use the same rates as Foreign.
{{-- ── LOCAL ── --}}
Local License
Fixed Fees
@foreach($localFees as $fee) @endforeach
Description12 Months6 Months
{{ $feeLabels[$fee->fee_type] ?? ucfirst(str_replace('_', ' ', $fee->fee_type)) }} ${{ number_format($fee->amount_12m, 0) }} ${{ number_format($fee->amount_6m, 0) }}
Vessel Size Fee
@foreach($vesselSizes as $vs) @endforeach
Size12 Months6 Months
{{ $vs->label }} ${{ number_format($vs->local_12m, 0) }} ${{ number_format($vs->local_6m, 0) }}
Harvesting Method Fee
@foreach($harvestingMethods as $hm) @endforeach
Method12 Months6 Months
{{ $hm->name }}{{ $hm->is_other ? ' (per method)' : '' }} ${{ number_format($hm->local_12m, 0) }} ${{ number_format($hm->local_6m, 0) }}
Target Fish Family Fee
@foreach($fishFamilies as $ff) @endforeach
Fish Family12 Months6 Months
{{ $ff->name }}{{ $ff->is_other ? ' (per species)' : '' }} ${{ number_format($ff->local_12m, 0) }} ${{ number_format($ff->local_6m, 0) }}
{{-- ── SEMI-FOREIGN / FOREIGN ── --}}
Semi-Foreign / Foreign License
Fixed Fees
@foreach($foreignFees as $fee) @endforeach
Description12 Months6 Months
{{ $feeLabels[$fee->fee_type] ?? ucfirst(str_replace('_', ' ', $fee->fee_type)) }} ${{ number_format($fee->amount_12m, 0) }} ${{ number_format($fee->amount_6m, 0) }}
Vessel Size Fee
@foreach($vesselSizes as $vs) @endforeach
Size12 Months6 Months
{{ $vs->label }} ${{ number_format($vs->foreign_12m, 0) }} ${{ number_format($vs->foreign_6m, 0) }}
Harvesting Method Fee
@foreach($harvestingMethods as $hm) @endforeach
Method12 Months6 Months
{{ $hm->name }}{{ $hm->is_other ? ' (per method)' : '' }} ${{ number_format($hm->foreign_12m, 0) }} ${{ number_format($hm->foreign_6m, 0) }}
Target Fish Family Fee
@foreach($fishFamilies as $ff) @endforeach
Fish Family12 Months6 Months
{{ $ff->name }}{{ $ff->is_other ? ' (per species)' : '' }} ${{ number_format($ff->foreign_12m, 0) }} ${{ number_format($ff->foreign_6m, 0) }}
@endsection