|
1 |
| -##  Pushmix Notifications Driver for Laravel 5.5. |
| 1 | +##  Pushmix Notifications Driver for Laravel 6. |
2 | 2 |
|
3 | 3 | [](https://packagist.org/packages/pushmix/laravel-web-notification)
|
4 | 4 | [](LICENSE.md)
|
|
11 | 11 |
|
12 | 12 | ## About
|
13 | 13 |
|
14 |
| -This package makes it easy to send [Pushmix notifications](https://www.pushmix.co.uk/docs/laravel-package) with Laravel 5.5. |
| 14 | +This package makes it easy to send [Pushmix notifications](https://www.pushmix.co.uk/docs/laravel-package) with Laravel 6. |
15 | 15 |
|
16 | 16 | ## Contents
|
17 | 17 |
|
@@ -40,7 +40,7 @@ If you haven't already, sign up for a free account on [pushmix.co.uk](https://da
|
40 | 40 | You can install the package via composer:
|
41 | 41 |
|
42 | 42 | ```bash
|
43 |
| -$ composer require pushmix/laravel-web-notification |
| 43 | +$ composer require pushmix/laravel-web-notification:dev-master |
44 | 44 | ```
|
45 | 45 |
|
46 | 46 | If you're installing the package in Laravel 5.4 or lower, you must import the service provider:
|
@@ -113,12 +113,12 @@ class AbandonedCart extends Notification
|
113 | 113 | {
|
114 | 114 |
|
115 | 115 | return PushmixMessage::create($to)
|
116 |
| - /* Required Parameters */ |
| 116 | + /* Required Parameters */ |
117 | 117 | ->title("You still have items in your Cart!")
|
118 | 118 | ->body("There's still time to complete your order. Return to your cart?")
|
119 | 119 | ->url("https://www.pushmix.co.uk")
|
120 | 120 |
|
121 |
| - /* Optional Parameters */ |
| 121 | + /* Optional Parameters */ |
122 | 122 | ->button("Return to your cart", "https://www.pushmix.co.uk/docs") // button one
|
123 | 123 | ->priority("high")
|
124 | 124 | ->ttl(7200) // time to live
|
|
0 commit comments