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

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

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

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

@endif

Pending Groups Request

@foreach($pending_lists as $key => $value) @endforeach
Group Name Group Type(s) Action
{{$value['groups']['group_name']}} {{$value['groups']['group_type'] == 'cg' ? 'Close Group' : 'Open Group'}}
@endsection