@extends('layouts.app') @section('title', 'My Groups') @section('content')
{{-- Back link --}} Back to Profile {{-- Page heading --}}

My Groups

{{count($group_link)}} Groups
{{-- ───────────────────────────────────────────── GROUP CARD 1 — Admin (send-message enabled) ───────────────────────────────────────────── --}} @if(count($group_link)>0) @foreach($group_link as $grouplist) @php $total_group_count=App\Models\GroupLink::where('group_id',$grouplist->group_id)->count(); @endphp
{{-- Card header --}}
@if($grouplist->group->cover_image) @endif

{{$grouplist->group->name}}

{{$grouplist->group->groupCategory->name}}
{{-- Admin badge --}} @if($grouplist->role=='group_admin') Group Admin @else {{ucfirst($grouplist->role)}} @endif
{{-- Member count --}}
{{$total_group_count}} members
{{-- Admin action buttons --}}
{{-- Remove Group button --}} {{-- Hidden remove form (POST + spoofed DELETE) --}}
@endforeach @else
No records found
@endif
{{-- ═══════════════════════════════════════════════ SEND MESSAGE MODAL (shared, one per page) ════════════════════════════════════════════════ --}} {{-- Scripts --}} @endsection @push('scripts') @endpush