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