@extends('dashboard_layout') @section('content')
@if(Session::has('submit-status'))
{{ Session::get('submit-status') }}
@endif

My Transactions Listing

@if (count($user_coin_data_list) > 0) @foreach ($user_coin_data_list as $key => $value) @if($value['notes'] > '') @endif @endforeach @else @endif
Coin Group Transaction Chips Buyin Price (BTC) Coins Total Amount (BTC) Total Amount (USD) Stoploss Target 1 Target 2 Target 3 Notes Action
@if($value['coinlists']['type'] == 'old') @if($value['coinlists']['image_url'] && file_exists(public_path() ."/upload/coin_image/".$value['coinlists']['image_url'])) {{$value['coinlists']['name']}} @elseif($value['coinlists']['image_url'] && !file_exists(public_path() ."/upload/coin_image/".$value['coinlists']['image_url'])) {{$value['coinlists']['name']}} @else @endif @elseif($value['coinlists']['type'] == 'new') @if($value['coinlists']['image_url'] && file_exists(public_path() ."/upload/coin_image/".$value['coinlists']['image_url'])) {{$coin->name}} @elseif($value['coinlists']['image_url'] && !file_exists(public_path() ."/upload/coin_image/".$value['coinlists']['image_url'])) {{$value['coinlists']['name']}} @else @endif @endif
{{$value['coinlists']['name']}}
{{$value['group_info']['group_name']}} @if($value['transaction_type'] == 1) @elseif($value['transaction_type'] == 2) @else @endif
{{$value['time_ago']}}
@if($value['transaction_type'] != 3) {{$value['chip_value']}} @endif @if($value['transaction_type'] != 3) {{$value['current_price']}} @endif @if($value['transaction_type'] != 3) {{$value['quantity']}} @endif @if($value['transaction_type'] != 3) {{$value['total_value_btc']}} @endif @if($value['transaction_type'] != 3) {{$value['total_value_usd']}} @endif @if($value['transaction_type'] != 3) {{$value['stoploss']}} @endif @if($value['transaction_type'] == 2) {{$value['target_1']}} @endif @if($value['transaction_type'] == 2) {{$value['target_2']}} @endif @if($value['transaction_type'] == 2) {{$value['target_3']}} @endif @if($value['notes'] > '')@endif
There is no transaction till now.
Previous Transaction
@endsection