@@ -14,25 +14,29 @@ Adds a notification panel to your Laravel Spark Kiosk, allowing you to send noti
14
14
15
15
This package comes with predefined views and routes to use with your existing Spark installation.
16
16
17
- In order to install into your Spark application:
17
+ In order to install the Spark Kiosk Notifications Package into your Spark application:
18
18
19
- ** 1. Add the following to providers array in ` config\app.php ` **
19
+ ** 1. Add this composer package to your composer.json using the command below**
20
+
21
+ ` composer require vmitchell85/spark-kiosk-notify `
22
+
23
+ ** 2. Add the following to providers array in ` config\app.php ` **
20
24
21
25
` vmitchell85\SparkKioskNotify\SparkKioskNotifyServiceProvider::class, `
22
26
23
- ** 2 . Publish the Spark resources (views, VueJS components):**
27
+ ** 3 . Publish the Spark resources (views, VueJS components):**
24
28
25
29
` php artisan vendor:publish --provider="vmitchell85\SparkKioskNotify\SparkKioskNotifyServiceProvider" `
26
30
27
- ** 3 . Add the javascript components to your bootstrap.js file**
31
+ ** 4 . Add the javascript components to your bootstrap.js file**
28
32
29
33
Add ` require('./SparkKioskNotify/notifications.js'); ` to your ` resources/assets/js/components/bootstrap.js ` file.
30
34
31
- ** 4 . Compile the Javascript components**
35
+ ** 5 . Compile the Javascript components**
32
36
33
37
` gulp `
34
38
35
- ** 5 . Add the HTML snippets**
39
+ ** 6 . Add the HTML snippets**
36
40
37
41
File: ` resources/views/vendor/spark/kiosk.blade.php `
38
42
@@ -55,7 +59,7 @@ Inside the `<!-- Tab Panels -->` section, place the code to load the notificatio
55
59
</div >
56
60
```
57
61
58
- ** 6 . Try it out**
62
+ ** 7 . Try it out**
59
63
60
64
Log into your Spark application and access the new notifications tab located at:
61
65
0 commit comments