@extends('admin.layouts.dashbord_app') @section('styles') @endsection @section('content') @if(session('alert')) @endif
{{ csrf_field() }}

Sent Notification

@php $i = 1; @endphp @foreach ($get_notifications as $row) @if($row->attachment) @else @endif @php $i++; @endphp @endforeach
# Title Content Attachment Date/Time Sent to Total
{{ $i }} {{ $row->title }} {{ $row->content }}View FileNo attachment{{ \Carbon\Carbon::parse($row->date1)->format('d-m-Y') }} {{ $row->time1 }} {{ $row->sent_to_android + $row->sent_to_ios }}

Scheduled Notification

@php $i = 1; @endphp @foreach ($schd_notifications as $row) @if($row->attachment) @else @endif @php $i++; @endphp @endforeach
# Title Content Attachment Scheduled at
{{ $i }} {{ $row->title }} {{ $row->content }}View FileNo attachment{{ \Carbon\Carbon::parse($row->date1)->format('d-m-Y') }} {{ $row->time1 }}
@endsection @section('scripts') @endsection