@extends('layouts.app') @section('title') Read Mail @endsection @section('content') @php $user_role = Auth::user()->user_role; @endphp Read Mail Home Mailbox Compose Folders Inbox {{ isset($unreadCount) ? $unreadCount : 0 }} Sent Drafts {{ isset($draftCount) ? $draftCount : 0 }} Junk 65 Trash {{ isset($trashCount) ? $trashCount : 0 }} Read Mail {{ $mail['subject'] }} From: {{ $mail['from'] }} {{ $mail['date'] }} {!! $mail['body'] !!} @if(count($mail['attachments']) > 0) @endif @endsection