@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.
| # |
Group Name |
Members |
Community |
Created At |
Actions |
@foreach ($groups as $index => $group)
| {{ $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' }} |
{{-- --}}
|
@endforeach
@endsection
@push('scripts')
@endpush