@if(count($selectedDenominations) > 0)
@lang('cashregister::app.selectedItems', ['count' => count($selectedDenominations)])
@endif
@forelse($denominations as $denomination) @empty @endforelse
@lang('cashregister::app.name') @if($sortBy === 'name') @if($sortDirection === 'asc') @else @endif @endif @lang('cashregister::app.value') @if($sortBy === 'value') @if($sortDirection === 'asc') @else @endif @endif @lang('cashregister::app.type') @if($sortBy === 'type') @if($sortDirection === 'asc') @else @endif @endif @lang('cashregister::app.status') @if($sortBy === 'is_active') @if($sortDirection === 'asc') @else @endif @endif @lang('cashregister::app.actions')
{{ $denomination->name }}
@if($denomination->description)
{{ Str::limit($denomination->description, 50) }}
@endif
{{ $denomination->formatted_value }}
{{ $denomination->type_label }}

@lang('cashregister::app.noDenominationsFound')

@if($denominations->hasPages())
{{ $denominations->links() }}
@endif
@if($showDeleteModal)

@lang('cashregister::app.confirmDelete')

@lang('cashregister::app.confirmDeleteDenomination')

@endif @if($showBulkDeleteModal)

@lang('cashregister::app.confirmBulkDelete')

@lang('cashregister::app.confirmBulkDeleteDenominations', ['count' => count($selectedDenominations)])

@endif