@extends('layouts.app') @section('content')

{{ $type }}

Welcome to your inbox Mail Dashboard

Emails ({{ $type }})

@if ($mails->isEmpty())

No mails available

@else @if ($type == 'all') @elseif ($type != 'Read') @endif @foreach ($mails as $mail) @if ($type == 'all') @elseif ($type != 'Read') @endif @endforeach
ID Sender Name Sender Email Subject Sent Date Attachment Message StatusSpam StatusActions
{{ $mail->email_id }} {{ $mail->sender_name }} {{ $mail->sender_email }} {{ $mail->subject }} {{ $mail->sent_date }} {{ $mail->attachment_status == 1 ? 'Yes' : 'No' }} {{ $mail->message_status == 1 ? 'Read' : 'Unread' }}{{ $mail->is_spam == 1 ? 'Not Spam' : 'Spam' }} View
{{-- @if ($type == 'all') @elseif ($type != 'Read') @endif @foreach ($mails as $mail) @if ($type == 'all') @elseif ($type != 'Read') @endif @endforeach
ID Sender Name Sender Email Subject Sent Date Attachment Message StatusSpam StatusActions
{{ $mail->email_id }} {{ $mail->sender_name }} {{ $mail->sender_email }} {{ $mail->subject }} {{ $mail->sent_date }} {{ $mail->attachment_status == 1 ? 'Yes' : 'No' }} {{ $mail->message_status == 1 ? 'Read' : 'Unread' }}{{ $mail->is_spam == 1 ? 'Not Spam' : 'Spam' }} View
--}} @endif {{--
{{ $mails->links('pagination::bootstrap-5') }}
--}}
@endsection @push('scripts') @endpush