@extends('clients.layouts.app') @section('title', 'Email History') @section('content')

Email History

Review all official communications

@php $emails = [ ['date' => '2024-01-25 10:30', 'subject' => 'Welcome to OneHost BD!'], ['date' => '2024-01-26 14:15', 'subject' => 'Invoice #101 Payment Reminder'], ['date' => '2024-01-27 09:00', 'subject' => 'Service Upgraded Successfully'], ]; @endphp @foreach($emails as $email) @endforeach
Date Sent Message Subject Actions
{{ $email['date'] }} {{ $email['subject'] }}
@endsection