@extends('layouts.app')
@section('title', 'License Fee Schedule')
@section('content')
@verbatim
@endverbatim
💡 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
| Description | 12 Months | 6 Months |
@foreach($localFees as $fee)
| {{ $feeLabels[$fee->fee_type] ?? ucfirst(str_replace('_', ' ', $fee->fee_type)) }} |
${{ number_format($fee->amount_12m, 0) }} |
${{ number_format($fee->amount_6m, 0) }} |
@endforeach
Vessel Size Fee
| Size | 12 Months | 6 Months |
@foreach($vesselSizes as $vs)
| {{ $vs->label }} |
${{ number_format($vs->local_12m, 0) }} |
${{ number_format($vs->local_6m, 0) }} |
@endforeach
Harvesting Method Fee
| Method | 12 Months | 6 Months |
@foreach($harvestingMethods as $hm)
|
{{ $hm->name }}{{ $hm->is_other ? ' (per method)' : '' }}
|
${{ number_format($hm->local_12m, 0) }} |
${{ number_format($hm->local_6m, 0) }} |
@endforeach
Target Fish Family Fee
| Fish Family | 12 Months | 6 Months |
@foreach($fishFamilies as $ff)
|
{{ $ff->name }}{{ $ff->is_other ? ' (per species)' : '' }}
|
${{ number_format($ff->local_12m, 0) }} |
${{ number_format($ff->local_6m, 0) }} |
@endforeach
{{-- ── SEMI-FOREIGN / FOREIGN ── --}}
Semi-Foreign / Foreign License
Fixed Fees
| Description | 12 Months | 6 Months |
@foreach($foreignFees as $fee)
| {{ $feeLabels[$fee->fee_type] ?? ucfirst(str_replace('_', ' ', $fee->fee_type)) }} |
${{ number_format($fee->amount_12m, 0) }} |
${{ number_format($fee->amount_6m, 0) }} |
@endforeach
Vessel Size Fee
| Size | 12 Months | 6 Months |
@foreach($vesselSizes as $vs)
| {{ $vs->label }} |
${{ number_format($vs->foreign_12m, 0) }} |
${{ number_format($vs->foreign_6m, 0) }} |
@endforeach
Harvesting Method Fee
| Method | 12 Months | 6 Months |
@foreach($harvestingMethods as $hm)
|
{{ $hm->name }}{{ $hm->is_other ? ' (per method)' : '' }}
|
${{ number_format($hm->foreign_12m, 0) }} |
${{ number_format($hm->foreign_6m, 0) }} |
@endforeach
Target Fish Family Fee
| Fish Family | 12 Months | 6 Months |
@foreach($fishFamilies as $ff)
|
{{ $ff->name }}{{ $ff->is_other ? ' (per species)' : '' }}
|
${{ number_format($ff->foreign_12m, 0) }} |
${{ number_format($ff->foreign_6m, 0) }} |
@endforeach
@endsection