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

{{ $package->name }}

  • Jumlah Min. @money($package->min)
  • Jumlah Max. @money($package->max)
  • Keuntungan {{ $package->profit }}% ({{ $package->estimasiProfit }})
  • Kontrak {{ $package->contract }} Hari
@include('components.input-icon', [ 'icon' => 'RP', 'name' => 'amount', 'type' => 'tel', 'required' => true, ])
@endforeach

Riwayat

@if (count($histories)) @foreach ($histories as $history) @endforeach @else @endif
Tanggal Paket Jumlah Status Faktur Status Detail
{{ $history->created_at }} Paket {{ $history->package->name }} @money($history->amount) @if ($history->proccess == 'success') {{ $history->proccess }} @else  {{ $history->proccess }} @endif Faktur {{ $history->status }} @if ($history->isPaid == 1) @else @endif
Data tidak tersedia di tabel
@endsection