@extends('layouts.layoutMaster') @section('title', 'Test Notifications') @section('content')
Test your OneSignal notification system with real users and transactions.
| ID | Name | Player ID | Actions | |
|---|---|---|---|---|
| {{ $user->id }} | {{ $user->name }} | {{ $user->email }} |
{{ Str::limit($user->onesignal_player_id, 20) }}
|
| ID | Type | Amount | Status | User | Date | Actions |
|---|---|---|---|---|---|---|
| {{ $transaction->id }} | {{ ucfirst($transaction->transaction_type) }} | {{ number_format($transaction->transaction_amount, 2) }} | @if($transaction->status === 'approved') Approved @elseif($transaction->status === 'rejected') Rejected @else Pending @endif | @if($transaction->from_account && $transaction->from_account->customer && $transaction->from_account->customer->user) {{ $transaction->from_account->customer->user->name }} @else No user @endif | {{ $transaction->created_at->format('M d, Y H:i') }} | @if($transaction->from_account && $transaction->from_account->customer && $transaction->from_account->customer->user) @else No user @endif |