@extends('admin.layout') @section('title', __('Mail log')) @section('content')
← {{ __('Back to mail log') }}
{{ __('To') }} {{ $mailLog->to_address }} @if($mailLog->fromUser) {{ __('From') }} {{ $mailLog->fromUser->name }} (#{{ $mailLog->fromUser->id }}) @endif @if($mailLog->mail_type) {{ __('Type') }} {{ $mailLog->mail_type }} @endif {{ __('Subject') }} {{ $mailLog->subject }} {{ __('Date') }} {{ $mailLog->created_at->format('d-m-Y H:i:s') }}
@if($mailLog->body) @else

{{ __('No body content.') }}

@endif
@endsection