{{$loop->iteration}} |
{{$billing->customer_name ?? 'no name'}} |
@if (!isset($address))
{{ $billing->customer->address ?? 'no address' }} |
@endif
{{ Carbon\Carbon::parse($billing->billing_periode->name)->format('M Y') }} |
{{ Carbon\Carbon::parse($billing->due_date)->format('d M Y') }} |
@if ($billing->paket_price === 0)
{{ __('Free') }}
@else
@moneyIDR($billing->paket_price)
@endif
|
@if ($billing->status === 'LS')
{{ __('Lunas') }}
@elseif ($billing->status === 'PL')
{{ __('Mundur') }} {{ Carbon\Carbon::parse($billing->pay_later)->format('d M Y') }}
@else
{{ __('Belum Lunas') }}
@endif
|
@if ($billing->status === 'LS')
{{$billing->teller_name }}
@else
{{ __('') }}
@endif
|
@endforeach