@extends('welcome') @section('title','Support Emails') @section('content-header','Inbox Emails') @section('content-breadcrumb') @endsection @section('content')
Compose

Inbox

@if(count($emails) > 0) @foreach($emails as $email)

{{ucfirst($email->name)}}

{{\Carbon\Carbon::createFromTimeString($email->created_at)->format('d M Y H:i')}}

{{$email->email}}
Subject: {{$email->subject}}

{{trim($email->message)}}

@endforeach @else

Sorry, No emails received yet

@endif
@endsection @push('scripts') @endpush