@include('Admin.layouts.app') @include('Admin.layouts.sidebar') @section('title', 'Push Notifications')

Add Push Notifications

@if(Session::has('msg'))
{{Session::get('msg')}}
@endif
@foreach($notifications as $key => $notification) @endforeach
S.No Title Message Created at Status Actions
{{++$key}} {{$notification->title}} {{$notification->message}} {{$notification->created_at}} {{$notification->status == 1 ? 'Active' : 'InActive'}}
@include('Admin.layouts.footer') @include('Admin.layouts.modal')