@extends('layouts.basico') @section('content') Grupo - CDA
@if(Auth::user()->photo === null) Profile @endif @if(Auth::user()->photo != null) Perfil @endif

{{ Auth::user()->name }}

{{ Auth::user()->role }}

{{ $informacoesGrupo->name }}
@if(count($usuariosParticipantesGrupo) < 1) O grupo não possue membros @endif @foreach ($usuariosParticipantesGrupo as $usuarioParticipanteGrupo) @if($usuarioParticipanteGrupo->photo === null) @endif @if($usuarioParticipanteGrupo->photo != null) @endif @if($usuarioParticipanteGrupo->statu_id == 1) @endif @if($usuarioParticipanteGrupo->statu_id == 2) @endif @endforeach
Usuário E-mail Status Remover
Perfil {{ $usuarioParticipanteGrupo->name }} Perfil {{ $usuarioParticipanteGrupo->name }} {{ $usuarioParticipanteGrupo->email }}AtivoInativo
{{ $informacoesGrupo->name }}
@if(count($naoParticipantesGrupo) < 1) Sem usuários para adicionar @endif @foreach ($naoParticipantesGrupo as $naoParticipanteGrupo) @if($naoParticipanteGrupo->photo === null) @endif @if($naoParticipanteGrupo->photo != null) @endif @if($naoParticipanteGrupo->statu_id == 1) @endif @if($naoParticipanteGrupo->statu_id == 2) @endif @endforeach
Usuário E-mail Status Adicionar
Perfil {{ $naoParticipanteGrupo->name }}Perfil {{ $naoParticipanteGrupo->name }} {{ $naoParticipanteGrupo->email }}AtivoInativo
@if(session('msgSuccess')) @endif @if(session('msgError')) @endif
{{-- Modal desvincular usuário de grupo --}}
@csrf @method('DELETE')
@csrf @method('POST')
@endsection