@extends('setting.nav') @section('title', 'All Mail Page') @section('content')
| ID | Subject | Sent Date | Sentiment | Action |
|---|---|---|---|---|
| {{ $index + 1 }} | {{ $msg->subject }} | {{ $sent->format('d M Y H:i A') }} | @php $getting_spam = strpos($msg->label_ids, 'SPAM') !== false ? 1 : 0; @endphp {{ $msg->is_promotion == 1 ? 'Mass mail' : ($getting_spam == 1 ? 'Mass mail' : ucfirst($msg->is_spam_value)) }} | View |
No messages found.
@endif