@forelse($notifications as $notification)
@if($notification->type == 'App\Notifications\NewUserNotification')
[{{ $notification->created_at }}] User {{ $notification->data['name'] }} ({{ $notification->data['email'] }}) has just registered.
Mark as read
@elseif($notification->type == 'App\Notifications\NewAccountNotification')
[{{ $notification->created_at }}] User {{ $notification->data['name'] }} Vertex Account ({{ $notification->data['mt5account'] }}) has just created.
Mark as read
@elseif($notification->type == 'App\Notifications\NewDepositNotification')
[{{ $notification->created_at }}] User {{ $notification->data['name'] }} Vertex Account {{ $notification->data['mt5account'] }} Amount {{ $notification->data['amount'] }} Deposit request just created.
Mark as read
@elseif($notification->type == 'App\Notifications\NewWithdrawNotification')
[{{ $notification->created_at }}] User {{ $notification->data['name'] }} Vertex Account {{ $notification->data['mt5account'] }} Amount {{ $notification->data['amount'] }} Withdraw request just created.
Mark as read
@elseif($notification->type == 'App\Notifications\DepositApprovedNotification')
[{{ $notification->created_at }}] Admin {{ $notification->data['adminname'] }} has Approved Deposit for User {{ $notification->data['name'] }} Vertex Account {{ $notification->data['mt5account'] }} Amount {{ $notification->data['amount'] }} Successfully.
Mark as read
@elseif($notification->type == 'App\Notifications\DepositRejectedNotification')
[{{ $notification->created_at }}] Admin {{ $notification->data['adminname'] }} has Rejected Deposit for User {{ $notification->data['name'] }} Vertex Account {{ $notification->data['mt5account'] }} Amount {{ $notification->data['amount'] }} Successfully.
Mark as read
@elseif($notification->type == 'App\Notifications\WithdrawApprovedNotification')
[{{ $notification->created_at }}] Admin {{ $notification->data['adminname'] }} has Approved Withdraw for User {{ $notification->data['name'] }} Vertex Account {{ $notification->data['mt5account'] }} Amount {{ $notification->data['amount'] }} Successfully.
Mark as read
@elseif($notification->type == 'App\Notifications\WithdrawRejectedNotification')
[{{ $notification->created_at }}] Admin {{ $notification->data['adminname'] }} has Rejected Withdraw for User {{ $notification->data['name'] }} Vertex Account {{ $notification->data['mt5account'] }} Amount {{ $notification->data['amount'] }} Successfully.
Mark as read
@endif
@if($loop->last)
Mark all as read
@endif
@empty
There are no new notifications
@endforelse