@extends('layouts.backend.index') @section('title', $label) @section('content')
No. Invoice : {{ $invoice->number }}
Tanggal : {{ Common::dateFormat($invoice->setdate, 'dd mmmm yyyy') }}
Nama Pelanggan : {{ $invoice->customer->name }}
Total Biaya : {{ 'Rp. ' . number_format($invoice->total, 0, '', '.') }}

@csrf
@php $old = old('termins', []); $duedate = []; $no = 1; @endphp @if (empty($old)) @else @foreach ($old['duedate'] as $index => $d) @php array_push($duedate, $d); $no++; @endphp @endforeach @endif
No Tanggal Jatuh Tempo Total
1
{{ $no }}
@endsection @push('styles') @endpush @push('scripts') @endpush