@extends('layouts.app') @section('title', 'Test Notification System') @section('content')

Test Notification System

Test Your Multi-Channel Notifications

Use this page to test email, SMS, and in-app notifications. Make sure to configure your notification settings first.

@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
Email Notification Test

Test email notifications to your registered email address.

@csrf
SMS Notification Test

Test SMS notifications to your mobile phone.

@csrf
Include country code (e.g., +1 for US)
In-App Notification Test

Test in-app notifications that appear in your notification center.

@csrf

User: {{ $testUser->name ?? 'Not logged in' }}
Target: In-app notification center

Multi-Channel Test

Test all available notification channels simultaneously.

@csrf
Configuration Status
Email
  • SMTP Configured
  • Templates Available
  • Rate Limiting Active
SMS
  • Twilio {{ config('services.twilio.enabled') ? 'Enabled' : 'Disabled' }}
  • Account {{ config('services.twilio.sid') ? 'Configured' : 'Not Configured' }}
  • Rate Limiting Active
In-App
  • Database Ready
  • Real-time Updates
  • Widget Integrated
@endsection