@extends('admin.layouts.layout') @section('title', 'Dialer') @section('content')
VoIP Dialer Connecting...
@if($session && $currentLead)
Power Dialer Active
Lead {{ $session->current_index + 1 }} of {{ $session->total_leads }}: {{ trim($currentLead->first_name . ' ' . $currentLead->last_name) }}
{{ $currentLead->phone }}
@endif
{{-- Dial pad --}}
@foreach(['1','2','3','4','5','6','7','8','9','*','0','#'] as $key) @endforeach
0:00
{{-- Disposition modal trigger area --}}
Call Disposition

How did the call end?

@foreach(['answered' => 'success', 'voicemail' => 'info', 'busy' => 'warning', 'no-answer' => 'secondary', 'wrong-number' => 'danger'] as $dispo => $color) @endforeach
Recent Calls
@endsection @push('scripts') @endpush