@extends('layouts.app') @section('content') @php use Carbon\Carbon; $createdAt = $info->created_at; $formattedDate = Carbon::parse($createdAt)->format('F jS Y, h:i A'); @endphp

Show Message

All Message
{{substr($info->first_name, 0, 1)}}

{{$info->first_name}} {{$info->last_name}}

{{$info->email}}

{{$formattedDate}}

Subject: {{$info->subject}}

{{$info->message}}

@endsection