@extends('layouts.app') @section('page-title', __('Email Details')) @section('page-heading', __('Email Details')) @section('breadcrumbs') @stop @section('content')

@lang('Email Details')

@lang('Back') @lang('Download')

{{ $email->recipient }}

{{ $email->subject }}

{{ $email->status_description ?? 'N/A' }}

{{ $email->formatted_created_at ?? 'N/A' }}


@if($email->attachment)
@php $paths = is_array($email->attachment) ? $email->attachment : (json_decode($email->attachment, true) ?: []); @endphp @if(count($paths)) @else

@lang('No attachments')

@endif
@endif
@endsection