@extends('layouts.load') @section('content')
| {{ __("User ID#") }} | {{$invest->user->id}} | |||||
|---|---|---|---|---|---|---|
| {{ __("User Name") }} | {{$invest->user->name}} | |||||
| {{ __("Invest Amount") }} | ${{ round($invest->amount, 2) }} | |||||
| {{ __("Transaction ID/Number") }} | {{$invest->txnid}} | |||||
| {{ __("Coin Amount") }} | {{ round($invest->coin_amount, 2) }} | |||||
| {{ __("Invest Status") }} | @if ($invest->status == 0){{ __('Pending') }} | @elseif ($invest->status == 1){{ __('Running') }} | @else{{ __('Completed') }} | @endif|||
| {{ __("Lifetime Return") }} | @if ($invest->lifetime_return == 1){{ __('YES') }} | @else{{ __('NO') }} | @endif||||
| {{ __("Capital Back") }} | @if ($invest->capital_back == 1){{ __('YES') }} | @else{{ __('NO') }} | @endif||||
| {{ __("Payment Status") }} | @if ($invest->payment_status == 'pending'){{ __('PENDING') }} | @else{{ __('COMPLETED') }} | @endif||||
| {{ __("User Email") }} | {{$invest->user->email}} | |||||
| {{ __("User Phone") }} | {{$invest->user->phone}} | |||||
| {{ __("Invest Method") }} | {{$invest->method}} |