@extends('layouts.master') @section('title','Successful Connections Report') @section('content')

Successful Connections

@forelse($active_connections as $c) @empty @endforelse
User A User B Chat Id
{{ $c['user_a'] }} {{ $c['user_b'] }} {{ $c['chat_id'] }}
No connections
{{ $active_connections->links('pagination::bootstrap-5') }}
@endsection