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

Tambah Investasi

@csrf
@include('components.input', [ 'label' => 'Paket', 'name' => 'name', 'value' => $package->name, ]) @include('components.input', [ 'label' => 'Jumlah Investasi', 'name' => 'amount', 'value' => 'RP ' . $package->amount . '.00', ]) @include('components.input', [ 'label' => 'Keuntungan', 'name' => 'profit', 'value' => "$package->profit% ($package->estimasiProfit) RP " . ($package->profit / 100) * $package->amount . '.00', ]) @include('components.input', [ 'label' => 'Kontrak / OI', 'name' => 'contract', 'value' => $package->contract . " $package->estimasiProfit (RP " . $package->contract * ($package->profit / 100) * $package->amount . '.00)', ])

Pemberitahuan:

jika sesuai, silakan klik submit

Kembali
@csrf

Riwayat

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

Menampilkan 1 hingga 10 dari 13 entri

@endsection