@extends('admin.layouts.layout') @section('title', 'Power Dialer') @section('content')
Start New Session
@csrf
Recent Sessions
@forelse($sessions as $session) @empty @endforelse
NameProgressStatusStarted
{{ $session->name }} {{ $session->called_count }} / {{ $session->total_leads }} @php $sc = match($session->status) { 1=>'success', 2=>'warning', 3=>'secondary', default=>'light' }; @endphp {{ match($session->status) { 1=>'Active', 2=>'Paused', 3=>'Completed', default=>'Unknown' } }} {{ $session->started_at?->format('M d H:i') ?? '--' }} @if($session->status !== 3) Resume @endif
No sessions yet.
@endsection @push('scripts') @endpush