@extends('layouts.dashboard') @section('title', 'Dashboard') @section('page-title', 'Dashboard') @section('content') @php $isSuperAdmin = $adminInfo['is_superadmin'] ?? false; @endphp
| User | Phone | Type | Time |
|---|---|---|---|
| {{ $call->user->name ?? 'N/A' }} |
{{ $call->phone_number }}
@if($call->contact_name)
{{ $call->contact_name }}
@endif
|
{{ ucfirst($call->call_type) }} | {{ $call->call_time->diffForHumans() }} |
| No recent calls | |||
| Channel | Phone | Status | Time |
|---|---|---|---|
| @if(($sms->channel ?? 'sms') == 'whatsapp') @else @endif |
{{ $sms->phone_number }}
@if($sms->contact_name)
{{ $sms->contact_name }}
@endif
|
{{ ucfirst($sms->status) }} | {{ $sms->sent_at?->diffForHumans() ?? 'N/A' }} |
| No recent messages | |||
| User | Device ID | IP Address | Time |
|---|---|---|---|
| {{ $login->user->name ?? 'N/A' }} | {{ Str::limit($login->device_id, 20) }} |
{{ $login->ip_address ?? 'N/A' }} |
{{ $login->created_at->diffForHumans() }} |
| No recent logins | |||