aboutsummaryrefslogtreecommitdiffhomepage
path: root/resources/views/welcome.blade.php
diff options
context:
space:
mode:
Diffstat (limited to 'resources/views/welcome.blade.php')
-rw-r--r--resources/views/welcome.blade.php27
1 files changed, 0 insertions, 27 deletions
diff --git a/resources/views/welcome.blade.php b/resources/views/welcome.blade.php
deleted file mode 100644
index 0d11569..0000000
--- a/resources/views/welcome.blade.php
+++ /dev/null
@@ -1,27 +0,0 @@
-<!DOCTYPE html>
-<head>
- <title>Pusher Test</title>
- <script src="https://js.pusher.com/4.1/pusher.min.js"></script>
- <script>
-
- // Enable pusher logging - don't include this in production
- Pusher.logToConsole = true;
-
- var pusher = new Pusher('6d5f2075a9c7df361239', {
- cluster: 'eu',
- encrypted: true
- });
-
- var channel = pusher.subscribe('my-channel');
- channel.bind('my-event', function(data) {
- alert(JSON.stringify(data));
- });
- </script>
-</head>
-<body>
- <h1>Pusher Test</h1>
- <p>
- Try publishing an event to channel <code>my-channel</code>
- with event name <code>my-event</code>.
- </p>
-</body>