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

{{ __('app.email_management') }}

{{ __('app.email_conversations') }}
@forelse($emails as $email) @empty @endforelse
{{ __('app.customer') }} {{ __('app.subject') }} {{ __('app.direction') }} {{ __('app.date') }} {{ __('app.actions') }}
{{ substr($email->customer->name, 0, 1) }}
{{ $email->customer->name }}
{{ $email->customer->email }}
{{ Str::limit($email->subject, 50) }} {{ __('app.' . $email->direction) }} {{ $email->created_at->format('M d, Y H:i') }}
{{ __('app.no_emails_found') }}
@endsection @push('scripts') @endpush