@extends('admin.layouts.app') @section('styles') @endsection @section('header') @include('admin.layouts.header') @endsection @section('sidemenu') @include('admin.layouts.sidemenu') @endsection @section('content')

Notification

{{ 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 Time Sent to Android Sent to iOS Sent to Total
{{ $i }} {{ $row->title }} {{ $row->content }}View FileNo attachment{{ $row->date }} {{ $row->time }} {{ $row->sent_to_android }} {{ $row->sent_to_ios }} {{ $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{{ $row->date }} {{ $row->time }}
@endsection @section('footer') @include('admin.layouts.footer') @endsection @section('scripts') @endsection