@extends('layouts.admin_template') @section('content')

@lang('translate.unread_notifications_list')

@foreach (['danger', 'warning', 'success', 'info'] as $msg) @if(Session::has('alert-' . $msg)) @endif @endforeach
@forelse($notifications as $notification) @if($notification->type == 'App\Notifications\NewUserNotification') @elseif($notification->type == 'App\Notifications\NewAccountNotification') @elseif($notification->type == 'App\Notifications\NewDepositNotification') @elseif($notification->type == 'App\Notifications\NewWithdrawNotification') @elseif($notification->type == 'App\Notifications\NewIbWithdrawNotification') @elseif($notification->type == 'App\Notifications\DepositApprovedNotification') @elseif($notification->type == 'App\Notifications\DepositRejectedNotification') @elseif($notification->type == 'App\Notifications\WithdrawApprovedNotification') @elseif($notification->type == 'App\Notifications\WithdrawRejectedNotification') @elseif($notification->type == 'App\Notifications\IbWithdrawApprovedNotification') @elseif($notification->type == 'App\Notifications\IbWithdrawRejectedNotification') @elseif($notification->type == 'App\Notifications\NewReminderNotification') @endif @if($loop->last) @lang('translate.mark_as_read') @endif @empty @lang('translate.there_are_no_new_notifications') @endforelse
@endsection