@extends('layouts.load') @section('content')
@if ($invest->amount != NULL) @endif @if ($invest->method == 'Manual') @endif @if ($invest->coin_amount != NULL) @endif @if ($invest->status == 0) @elseif ($invest->status == 1) @else @endif @if ($invest->lifetime_return == 1) @else @endif @if ($invest->capital_back == 1) @else @endif @if ($invest->payment_status == 'pending') @else @endif
{{ __("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") }} {{ __('Pending') }} {{ __('Running') }} {{ __('Completed') }}
{{ __("Lifetime Return") }} {{ __('YES') }} {{ __('NO') }}
{{ __("Capital Back") }} {{ __('YES') }} {{ __('NO') }}
{{ __("Payment Status") }} {{ __('PENDING') }} {{ __('COMPLETED') }}
{{ __("User Email") }} {{$invest->user->email}}
{{ __("User Phone") }} {{$invest->user->phone}}
{{ __("Invest Method") }} {{$invest->method}}
@endsection