@forelse($notifications as $notification)
@if($notification->type == 'App\Notifications\NewUserNotification')
[{{ $notification->created_at }}] User {{ $notification->data['name'] }} ({{ $notification->data['email'] }}) has just registered.
@lang('translate.mark_as_read')
@elseif($notification->type == 'App\Notifications\NewAccountNotification')
[{{ $notification->created_at }}] User {{ $notification->data['name'] }} MT5 ID ({{ $notification->data['mt5id'] }}) has just created.
@lang('translate.mark_as_read')
@elseif($notification->type == 'App\Notifications\NewDepositNotification')
[{{ $notification->created_at }}] User {{ $notification->data['name'] }} MT5 ID {{ $notification->data['mt5id'] }} Amount {{ $notification->data['amount'] }} Deposit request just created.
@lang('translate.mark_as_read')
@elseif($notification->type == 'App\Notifications\NewWithdrawNotification')
[{{ $notification->created_at }}] User {{ $notification->data['name'] }} MT5 ID {{ $notification->data['mt5id'] }} Amount {{ $notification->data['amount'] }} Withdraw request just created.
@lang('translate.mark_as_read')
@elseif($notification->type == 'App\Notifications\NewIbWithdrawNotification')
[{{ $notification->created_at }}] User {{ $notification->data['name'] }} Withdraw To {{ $notification->data['withdraw_to'] }} Amount {{ $notification->data['amount'] }} IB Withdraw request just created.
@lang('translate.mark_as_read')
@elseif($notification->type == 'App\Notifications\DepositApprovedNotification')
[{{ $notification->created_at }}] Admin {{ $notification->data['adminname'] }} has Approved Deposit for User {{ $notification->data['name'] }} MT5 ID {{ $notification->data['mt5id'] }} Amount {{ $notification->data['amount'] }} Successfully.
@lang('translate.mark_as_read')
@elseif($notification->type == 'App\Notifications\DepositRejectedNotification')
[{{ $notification->created_at }}] Admin {{ $notification->data['adminname'] }} has Rejected Deposit for User {{ $notification->data['name'] }} MT5 ID {{ $notification->data['mt5id'] }} Amount {{ $notification->data['amount'] }} Successfully.
@lang('translate.mark_as_read')
@elseif($notification->type == 'App\Notifications\WithdrawApprovedNotification')
[{{ $notification->created_at }}] Admin {{ $notification->data['adminname'] }} has Approved Withdraw for User {{ $notification->data['name'] }} MT5 ID {{ $notification->data['mt5id'] }} Amount {{ $notification->data['amount'] }} Successfully.
@lang('translate.mark_as_read')
@elseif($notification->type == 'App\Notifications\WithdrawRejectedNotification')
[{{ $notification->created_at }}] Admin {{ $notification->data['adminname'] }} has Rejected Withdraw for User {{ $notification->data['name'] }} MT5 ID {{ $notification->data['mt5id'] }} Amount {{ $notification->data['amount'] }} Successfully.
@lang('translate.mark_as_read')
@elseif($notification->type == 'App\Notifications\IbWithdrawApprovedNotification')
[{{ $notification->created_at }}] Admin {{ $notification->data['adminname'] }} has Approved IB Withdraw for User {{ $notification->data['name'] }} Withdraw To {{ $notification->data['withdraw_to'] }} Amount {{ $notification->data['amount'] }} Successfully.
@lang('translate.mark_as_read')
@elseif($notification->type == 'App\Notifications\IbWithdrawRejectedNotification')
[{{ $notification->created_at }}] Admin {{ $notification->data['adminname'] }} has Rejected IB Withdraw for User {{ $notification->data['name'] }} Withdraw To {{ $notification->data['withdraw_to'] }} Amount {{ $notification->data['amount'] }} Successfully.
@lang('translate.mark_as_read')
@elseif($notification->type == 'App\Notifications\NewReminderNotification')
[{{ $notification->created_at }}] Reminder for ({{ $notification->data['lead'] }}) is set on {{ $notification->data['reminder'] }} by {{ $notification->data['name'] }}.
@lang('translate.mark_as_read')
@endif
@if($loop->last)
@lang('translate.mark_as_read')
@endif
@empty
@lang('translate.there_are_no_new_notifications')
@endforelse