@extends('layouts.app') @section('title', 'WhatsApp Groups') @section('content')

WhatsApp Groups

Manage and view all WhatsApp groups associated with your account.


Total Groups: {{ count($groups) }}

Note: Click on the eye icon to view group details.

@foreach ($groups as $index => $group) @endforeach
# Group Name Members Community Created At Actions
{{ $index + 1 }} {{ $group['name'] ?? 'N/A' }} {{ $group['participantsCount'] ?? count($group['participants'] ?? []) }} {{ $group['isCommunity'] ? 'Yes' : 'No' }} {{ isset($group['createdAt']) ? \Carbon\Carbon::createFromTimestamp($group['createdAt'])->format('Y-m-d H:i:s') : 'N/A' }} {{-- --}}
@endsection @push('scripts') @endpush