@extends('layouts.partials.master') @section('title', 'Log de email') @push('styles') @endpush @section('content')
Enviado: {{ $emailLog->sent_at }}
Para: {{ implode(', ', $emailLog->to) }}
CC: {{ implode(', ', $emailLog->cc) }}
BCC: {{ implode(', ', $emailLog->bcc) }}
Assunto: {{ $emailLog->subject }}
@if ($emailLog->attachments)Anexos: {{ count($emailLog->attachments) }}
{{ $attachment['name'] }} (excluĂdo)
@endif @endforeachSem anexos
@endif