@extends('_layout.main') @section('content') @include('components.page-indicator', [ 'page' => 'Konfirmasi', 'path' => ['Beranda', 'Konfirmasi'], ])

Konfirmasi

@if ($investment->isPaid == 1)
Konfirmasi untuk faktur {{ $investment->code }} telah dikirim sebelumnya, mohon tunggu kami akan memproses konfirmasi Anda secepatnya.
@else
@csrf @method('PUT')
@csrf
@include('components.input', [ 'label' => 'Paket', 'name' => 'name', 'value' => $investment->package->name, ])
@include('components.input', [ 'label' => 'Catatan', 'name' => 'note', ])

Unggah

Kembali
@endif

Riwayat

@include('components.print')
@if (count($histories) != 0) @foreach ($histories as $history) @endforeach @else @endif
Tanggal Faktur Jumlah Pembayaran Kepada Info
{{ $history->created_at }} Tambah Paket {{ $history->package->name }} @money($history->amount) {{ $history->paymentTo }} {{ $history->note }}
Tidak ada data yang tersedia di tabel

Menampilkan 1 hingga 10 dari 13 entri

@endsection