@extends('dashboard_layout') @section('content')
@if(Session::has('success-status'))

{{ Session::get('success-status') }}

@endif @if(Session::has('error-status'))

{{ Session::get('error-status') }}

@endif

Welcome to Crypt Shares

Please report any feedback/issues here.

The site is currently in development and your feedback is HIGHLY appreciated.

Feedback Form

Groups Listing

@if(count($fetch_all_group_details) > 0) @foreach($fetch_all_group_details as $key => $value) @endforeach @else @endif
Group Name Group Type Group Owner Status Action
{{$value['groups']['group_name']}} {{$value['groups']['group_type'] == 'cg' ? 'Close Group' : 'Open Group'}} {{$value['groups']['group_admin_name']}} {{$value['groups']['status'] == 1 ? 'Active' : 'Inactive'}} @if($value['groups']['user_id'] == Auth::guard('crypto')->user()->id) @else @endif
There is no group available till now.
@if($count_my_group < 4) @endif
@foreach($group_list as $key => $group_value)

Latest Activities for {{$group_value['group_name']}}

    @if($count_user_activities[$key] > 0) @foreach($user_activities[$key] as $value)
  • {{ $value['users']['user_name'] }} {{ $value['activity_type'] }} @if($value['activity_from'] == "user_coins") @if($value['activity_type'] == "Placed a long" || $value['activity_type'] == "Updated a long") term hold on "{{ $value['coin_name'] }}" @elseif($value['activity_type'] == "Ended a long") term hold on "{{ $value['coin_name'] }}" @elseif($value['activity_type'] == "Placed a trade" || $value['activity_type'] == "Updated a trade") on "{{ $value['coin_name'] }}" @elseif($value['activity_type'] == "Ended a trade") on "{{ $value['coin_name'] }}" @elseif($value['activity_type'] == "Is watching") "{{ $value['coin_name'] }}" @elseif($value['activity_type'] == "Is not watching") "{{ $value['coin_name'] }}" @endif @elseif($value['activity_from'] == "group") the group @elseif($value['activity_from'] == "posts" || $value['activity_from'] == "post") a post @endif {{ $value['time_ago'] }} Ago
  • @endforeach @else
  • There is no activity available for this group.
  • @endif
@if($count_user_activities[$key] > 10) View All Activities @endif
@endforeach
@stop