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

{{$group_info['group_name']}} Transactions Listing

@if(Auth::guard('crypto')->user()->role_code != 'SITEADM') @endif @if (count($fetch_group_wise_coin_list) > 0) @foreach ($fetch_group_wise_coin_list as $key => $value) @if(Auth::guard('crypto')->user()->role_code != 'SITEADM') @endif @if($value['notes'] > '') @endif @endforeach @else @endif
Coin Transaction User Name Chips Buyin Price (BTC) Coins Total Amount (BTC) Total Amount (USD) Stoploss Target 1 Target 2 Target 3 NotesAction
@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']}}
@if($value['transaction_type'] == 1) @elseif($value['transaction_type'] == 2) @else @endif
{{$value['time_ago']}}
{{$value['user_info']['user_name']}} @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 @if($value['user_info']['id'] == Auth::guard('crypto')->user()->id) @endif
There is no transaction for this group till now.
@if(Auth::guard('crypto')->user()->role_code != 'SITEADM') @endif
@endsection