@extends('layouts.app') @section('content')

Commented Messages from AVP

@php $count = 1; $forDatalist = $allMails; $index = 0; @endphp @if (count($forDatalist) > 30)
@foreach ($forDatalist as $list) @php $index++; @endphp @endforeach

@endif


@foreach ($allMails as $mail)

{{ Carbon\Carbon::parse($mail->sent_date)->format('l M j, Y') }}

{{ $mail->subject }}
{{ $mail->body }}

View Report

@php $count++; @endphp @if ($count > 30) @break @endif @endforeach
@endsection