Skip to content

Commit 98f78eb

Browse files
committed
Adding support for Laravel 6.0
1 parent 621eed7 commit 98f78eb

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## ![Pushmix](https://www.pushmix.co.uk/media/favicons/favicon-32x32.png) Pushmix Notifications Driver for Laravel 5.5.
1+
## ![Pushmix](https://www.pushmix.co.uk/media/favicons/favicon-32x32.png) Pushmix Notifications Driver for Laravel 6.
22

33
[![Latest Version on Packagist](https://img.shields.io/packagist/v/pushmix/laravel-web-notification.svg)](https://packagist.org/packages/pushmix/laravel-web-notification)
44
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg)](LICENSE.md)
@@ -11,7 +11,7 @@
1111

1212
## About
1313

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.
1515

1616
## Contents
1717

@@ -40,7 +40,7 @@ If you haven't already, sign up for a free account on [pushmix.co.uk](https://da
4040
You can install the package via composer:
4141

4242
```bash
43-
$ composer require pushmix/laravel-web-notification
43+
$ composer require pushmix/laravel-web-notification:dev-master
4444
```
4545

4646
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
113113
{
114114

115115
return PushmixMessage::create($to)
116-
/* Required Parameters */
116+
/* Required Parameters */
117117
->title("You still have items in your Cart!")
118118
->body("There's still time to complete your order. Return to your cart?")
119119
->url("https://www.pushmix.co.uk")
120120

121-
/* Optional Parameters */
121+
/* Optional Parameters */
122122
->button("Return to your cart", "https://www.pushmix.co.uk/docs") // button one
123123
->priority("high")
124124
->ttl(7200) // time to live

0 commit comments

Comments
 (0)