@extends('layouts.app') @section('title', 'Reports') @section('page-title', 'Reports & Analytics') @push('styles') @endpush @section('content')
{{ $total }}
Total Calls
{{ $completed }}
Completed
{{ $failed }}
Failed
{{ $successRate }}%
Success Rate
{{ $avgDuration > 0 ? intdiv($avgDuration,60).'m' : '—' }}
Avg Duration
{{ $neutral }}
Neutral
Sentiment Breakdown
@php $st = max(1, $positive + $neutral + $negative); @endphp
Positive {{ $positive }} ({{ round($positive/$st*100) }}%)
Neutral {{ $neutral }} ({{ round($neutral/$st*100) }}%)
Negative {{ $negative }} ({{ round($negative/$st*100) }}%)
Daily Call Volume — Last 14 Days
@endsection @push('scripts') @endpush