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

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

@endif

Groups Listing

@foreach($fetch_all_group as $key => $value) @endforeach
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
@endsection