@extends('admin.template') @section('title') {{env('APP_NAME','Bitbance')}} Admin Panel @endsection @section('content')

Customer Dashboard

{{----}}

Deposits

@if(isset($deposits)) @foreach($deposits as $deposit) @endforeach @endif
# Amount Status Date
{{$loop->iteration}} {{$deposit->total_amount}} {{$deposit->currency}} {{$deposit->status}} {{$deposit->created_at->format('d/m/Y')}}

Withdrawals

@if(isset($withdrawals)) @foreach($withdrawals as $data) @endforeach @endif
# Amount Type Status Date
{{$loop->iteration}} {{$data->total_amount}} {{$data->currency}} {{$data->withdraw_type}} {{$data->status}} {{$data->created_at->format('d/m/Y')}}
{{--
--}}

Profit History

@if(isset($profit_history)) @foreach($profit_history as $data) @endforeach @endif
# Investment Amount Type Details Date
{{$loop->iteration}} {{($data->total)}} {{($data->amount)}} {{($data->currency)}} @if($data->type == "Debit") Profit Earn @elseif($data->type == "Credit") Profit Withdraw @endif {!! \Illuminate\Support\Str::limit($data->description,50) !!} {{$data->created_at->format('d/m/Y')}}
{{--
--}}
{{--
--}}

Bonus History

@if(isset($bonusHistory)) @foreach($bonusHistory as $data) @endforeach @endif
# Amount Type Details Date
{{$loop->iteration}} {{$data->amount}} @if($data->type == "Debit") Bonus @elseif($data->type == "Credit") Withdraw @endif {!! \Illuminate\Support\Str::limit($data->description,50) !!} {{$data->created_at->format('d/m/Y')}}
{{--
--}}
{{--

Cash deposits

To start a blog, think of a topic about and first brainstorm party is ways to write details

Total sales

$ 28835

Gross sales over the years

Today, many people rely on computers to do homework, work, and create or store useful information. Therefore, it is important

--}}
@endsection @section('js') {{----}} @endsection