| To:@foreach($toemails as $toemail) {{$toemail}} @if($loop->first) {!! ' ' !!} @endif @endforeach |
{!! $email->subject !!} | @php if(isset($email->created_at)){ $dateArr = explode(" ",$email->created_at); if($dateArr[0]==$todayDate) { echo date("g:i A", strtotime($email->created_at)); } else { if($currentYear==date("Y", strtotime($email->created_at))) { echo date("M d", strtotime($email->created_at)); } else { echo date("M d Y", strtotime($email->created_at)); } } } @endphp {{----}} |