@extends('layouts.app') @section('title', 'SEU CRM - ' . __('app.call_management')) @section('content')
| {{ __('app.customer') }} | {{ __('app.call_duration') }} | {{ __('app.status') }} | {{ __('app.date') }} | {{ __('app.actions') }} |
|---|---|---|---|---|
|
{{ substr($call->customer->name, 0, 1) }}
{{ $call->customer->name }}
{{ $call->customer->mobile }} |
@if($call->call_duration) {{ gmdate('H:i:s', $call->call_duration) }} @else {{ __('app.not_available') }} @endif | {{ $call->created_at->format('M d, Y H:i') }} | @if(isset($call->metadata['recording_url'])) {{ __('app.play_recording') }} @endif | |
|
{{ __('app.no_calls_found') }}
|
||||