@extends('admin.layout') @section('content')

Push Notifications

Send push notifications to your app users

{{-- Success/Error Messages --}} @if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif {{-- Statistics Cards --}}

Total Users

{{ number_format($totalUsers) }}

Can Receive Notifications

{{ number_format($usersWithTokens) }}

Without Push Tokens

{{ number_format($usersWithoutTokens) }}

{{-- Notification Form --}}

Compose Notification

@csrf {{-- Title --}}
Max 100 characters (Expo limit) 0/100
{{-- Message --}}
Max 100 characters (Expo limit) 0/100
{{-- User Selection --}}
{{-- Submit Button --}}
{{-- Preview Panel --}}

Preview

How your notification will appear:

{{-- Phone Mockup --}}

Your App

Notification Title

Your notification message will appear here...

now

{{-- Delivery Info --}}

Delivery Info

  • Instant delivery
  • Push to mobile devices
  • Shows in notification tray
@endsection