@extends('admin.layouts.app') @section('title', __('admin.billable_items.title')) @section('content')
@if(($billableItems ?? collect())->isEmpty())
{{ __('admin.billable_items.no_items') }}
@else @foreach($billableItems as $item) @endforeach
{{ __('common.table.description') }}{{ __('common.table.amount') }}{{ __('common.table.type') }}{{ __('common.table.actions') }}
{{ $item->description }} ${{ number_format($item->amount, 2) }} {{ $item->type ?? 'standard' }}
@csrf @method('DELETE')
@endif
@endsection