@lang('loyalty::app.exportExcel')

@lang('loyalty::app.totalOutstandingPoints')

{{ number_format($totals['points']) }}

@lang('loyalty::app.asOfDate'): {{ $asOfDate }}

@lang('loyalty::app.totalOutstandingValue')

{{ currency_format($totals['value'], restaurant()->currency_id) }}

@lang('loyalty::app.asOfDate'): {{ $asOfDate }}

@forelse ($rows as $account) @php $value = round(((int) $account->points_balance) * ($valuePerPoint ?? 1), 2); @endphp @empty @endforelse
@lang('loyalty::app.customer') @lang('loyalty::app.outstandingPoints') @lang('loyalty::app.outstandingValue')
{{ $account->customer?->name ?? __('loyalty::app.unknownCustomer') }} {{ number_format($account->points_balance) }} {{ currency_format($value, restaurant()->currency_id) }}
@lang('loyalty::app.noLiabilityFound')
{{ $rows->links() }}