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

Read Notifications

@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\DepositApprovedNotification') @elseif($notification->type == 'App\Notifications\DepositRejectedNotification') @elseif($notification->type == 'App\Notifications\WithdrawApprovedNotification') @elseif($notification->type == 'App\Notifications\WithdrawRejectedNotification') @endif @empty There are no new notifications @endforelse
@endsection