@extends('admin.layout')
@section('content')
Push Notifications
Send push notifications to your app users
{{-- Success/Error Messages --}}
@if(session('success'))
@endif
@if(session('error'))
@endif
{{-- Statistics Cards --}}
Total Users
{{ number_format($totalUsers) }}
Can Receive Notifications
{{ number_format($usersWithTokens) }}
Without Push Tokens
{{ number_format($usersWithoutTokens) }}
{{-- Notification Form --}}
{{-- Preview Panel --}}
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