@extends('layouts.parents.master') @section('title') {{studentCommonName(auth()->guard('student')->user()->username).__(' | Mail Box')}} @endsection @section('headerTitle') {{__('Mail Box')}} @endsection @section('content')
Compose
@foreach ($responseData as $key) @php $r = date("d-M-y",strtotime($key->date)); $sr = $r.' @ '.$key->time; $ssubject = $key->subject; $ssubject=htmlspecialchars($ssubject, ENT_QUOTES, 'UTF-8'); $sreply = SUBSTR($key->reply,0,100).'..'; $textMessages = "To :[".$key->sentto."]-".$sr."

".$ssubject.""; if($key->pattach != '') { $textMessages .= " Attachment Sent"; } $textMessages .= "

Reply:
".$sreply; if($key->sattach) { $textMessages .= "

Attachment Received"; } @endphp @endforeach
Emails Action
{!! $textMessages !!} View | Edit | Delete
@endsection @push('web-scripts') @endpush