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

{{ isset($title)?$title:'' }}

Today

@if(!empty($today)) @php $numItems = count($today); $i = 0; @endphp @foreach($today as $row)
{{ucwords($row->type)}}
{{$row->body}}
{{ date("h:i:s A", strtotime($row->created_at)) }}    {{ date("j-F-Y", strtotime($row->created_at)) }}
@if(++$i != $numItems)
@endif @endforeach @endif

Earlier

@if(!empty($earlier)) @php $numItems = count($earlier); $i = 0; @endphp @foreach($earlier as $row)
{{ucwords($row->type)}}
{{$row->body}}
{{ date("h:i:s A", strtotime($row->created_at)) }}    {{ date("j-F-Y", strtotime($row->created_at)) }}
@if(++$i != $numItems)
@endif @endforeach @endif
@section('js') @endsection @endsection