Addon Management Total Addons: {{ $addons->total() ?? 0 }}

@forelse ($addons as $addon) @empty @endforelse
Code {!! $sortField === 'addon_code' ? ($sortDirection === 'asc' ? '↑' : '↓') : '' !!} Name {!! $sortField === 'name' ? ($sortDirection === 'asc' ? '↑' : '↓') : '' !!} Resource Type Unit Price/Unit {!! $sortField === 'price_per_unit' ? ($sortDirection === 'asc' ? '↑' : '↓') : '' !!} Status {!! $sortField === 'is_active' ? ($sortDirection === 'asc' ? '↑' : '↓') : '' !!} Actions
{{ $addon->addon_code }} {{ $addon->name }} {{ ucwords(str_replace('_', ' ', $addon->resource_type)) }} {{ $addon->unit }} ${{ number_format($addon->price_per_unit, 2) }} @if ($addon->is_active) Active @else Inactive @endif
No addons found.