@extends('layouts.app') @section('title', 'SEU CRM - ' . __('app.interactions')) @section('content')

{{ __('app.view') }} {{ __('app.interactions') }}

{{ __('app.edit') }} {{ __('app.interactions') }}
{{ __('app.interactions') }} {{ __('app.task_details') }}
{{ $interaction->subject ?? __('app.no_subject') }}
{{ ucfirst($interaction->channel) }} {{ __('app.' . $interaction->direction) }}
{{ __('app.message_content') }} :

{{ $interaction->body }}

@if($interaction->outcome)
{{ __('app.outcome') }} :

{{ $interaction->outcome }}

@endif
{{ __('app.customer') }} :
{{ substr($interaction->customer->name, 0, 1) }}
{{ $interaction->customer->name }} {{ $interaction->customer->email }}
{{ __('app.task_details') }}
@if($interaction->call_duration) @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') }}
@endsection