@extends('layouts.app') @section('title', 'SEU CRM - ' . __('app.interactions')) @section('content')
{{ $interaction->body }}
@if($interaction->outcome){{ $interaction->outcome }}
@endif| ID : | : | #{{ $interaction->id }} |
| {{ __('app.channel') }} | : | {{ ucfirst($interaction->channel) }} |
| {{ __('app.direction') }} | : | {{ __('app.' . $interaction->direction) }} |
| {{ __('app.call_duration') }} | : | {{ $interaction->call_duration }} {{ __('app.duration_in_minutes') }} |
| {{ __('app.user') }} | : | {{ $interaction->user->name ?? __('app.system') }} |
| {{ __('app.created') }} | : | {{ $interaction->created_at->format('M d, Y H:i') }} |
| {{ __('app.updated_at') }} | : | {{ $interaction->updated_at->format('M d, Y H:i') }} |