@php
$auth_id=Auth::user()->id;
$expiryTimestamp = strtotime($conversation->expiry);
$expirydate = date('d-m-Y H:i:s', $expiryTimestamp);
@endphp
Attention!
• If you need to save the message contents somewhere, please make sure you use appropriate encryption.
• The contents of this page will disappear in {{ $expirydate }}.
@foreach($data as $replydata)
@php
$date=date('d-m-Y H:i' , strtotime($replydata->created_at));
@endphp
{{ $replydata->email }} - {{ $date }}
{{ $replydata->message }}
@endforeach
Message was created successfully!
• Copy the URL below and send it to the recipient.
• The message will self-destruct after being read or after the timer expires if the message hasn't been read in time.
• In case you need to delete the message you just wrote, use the corresponding button.
• The contents of this page will disappear in .