{{ __('Billing Pay Later') }}
{!! Form::model($billing, ['method' => 'PATCH','route' => ['billings.postPaylater', $billing->slug],'style'=>'display:inline']) !!}
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
{{ __('billing.pay-later') }} @if ($errors->has('pay_later')) {{ $errors->first('pay_later') }} @endif
@section('custom_styles') @endsection @section('custom_scripts') @endsection