@extends('admin.layouts.main') @section('menu', 'Logs') @section('title', 'Email Logs') @section('content')
| Date | To | Subject | Sent By |
|---|---|---|---|
| {{ $log->created_at->format('M d, Y H:i') }} | @if(!empty($log->properties['to'])) @foreach((array)$log->properties['to'] as $to) {{ $to }} @endforeach @else - @endif | {{ $log->properties['subject'] ?? '-' }} | @if($log->user) {{ $log->user->first_name }} @else System @endif |
| No email logs found. | |||