@extends('layouts.mobile-user') @section('content')
@php $i = 0 @endphp @foreach($deposit as $p) @php $i++ @endphp @php $rep = \App\Repeat::whereDeposit_id($p->id)->first() @endphp
@if($p->status == 0) Running @else Completed @endif {{ date('d-m-Y h:s A',strtotime($p->created_at)) }}
#{{ $p->deposit_number }}
{{ $p->plan->name }}
{{$p->wallets->wallets->name}}
{{ $basic->currency }}{{ $p->amount }}
@php $wid = (100*$rep->rebeat) /$p->time @endphp
@if($wid == 0)
Running
@else
{{ round($wid) }}% Complete
@endif

@endforeach
@foreach($live as $p)
@if($p->status == 0) Running @else Completed @endif {{ date('d-m-Y h:s A',strtotime($p->created_at)) }}
{{ $p->symbol }}
{{ $p->currency }}
{{ $basic->currency }}{{ $p->amount }}

@if($p->result == 'Pending') {{ $p->result }} @elseif($p->result == 'Win') {{ $p->result }} @elseif($p->result == 'Lose') {{ $p->result }} @elseif($p->result == 'Draw') {{ $p->result }} @endif

@if($p->high_low == 1) Low @elseif($p->high_low == 2) High @endif


@endforeach
@endsection @section('sheets') @endsection @section('scripts') @endsection