Number:
{{ $billing->billing_number ?? 'no data' }}
Name:
{{ $billing->customer_name ?? 'no data' }}
Periode:
{{ $billing->month ?? 'no data' }} - {{ $billing->year ?? 'no data' }}
Paket:
{{ $billing->paket_name ?? 'no data' }}
Price:
@moneyIDR($billing->paket_price ?? '0')
User Created:
{{ $billing->created_name ?? 'no data' }}
State:
@if ($billing->status === 'LS')
{{ __('billing.state.lunas') }}
@elseif ($billing->status === 'PL')
{{ __('billing.state.paylater') }}
@else
{{ __('billing.state.belum-lunas') }}
@endif
@if ($billing->status === 'LS')
Teller:
{{ $billing->teller_name ?? 'No User' }}
@endif
@section('custom_styles')