You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CHANGELOG.md
+6
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,12 @@
3
3
All notable changes to this project will be documented in this file.
4
4
This project adheres to [Semantic Versioning](http://semver.org/).
5
5
6
+
## [2.0.0] - 2023-09-11
7
+
8
+
* Updated PHP requirement to 8.1 and above (7.4 and 8.0 dropped) [PR#28](https://github.com/mikebarlow/megaphone/pull/28)
9
+
* Updated to Livewire 3 [PR#28](https://github.com/mikebarlow/megaphone/pull/28)
10
+
* Updated Testbench and Pest [PR#28](https://github.com/mikebarlow/megaphone/pull/28)
11
+
6
12
## [1.2.0] - 2023-02-25
7
13
8
14
* Removed `public $user` from component and changed loading of announcements to prevent user model data exposure. [PR #22](https://github.com/mikebarlow/megaphone/pull/22)
Copy file name to clipboardexpand all lines: README.md
+29-8
Original file line number
Diff line number
Diff line change
@@ -19,23 +19,48 @@ Before using Megaphone, a demo is available for you to view and try the Bell Ico
19
19
20
20
[View the Megaphone Demo](https://megaphone.mikebarlow.co.uk)
21
21
22
+
## Upgrade from 1.x
23
+
24
+
Megaphone has been updated to support Livewire 3. This also means PHP requirements have been updated to match the requirements of Livewire 3 which means you need to be running PHP 8.1 or above (PHP 7.4 and 8.0 are no longer supported).
25
+
Then make sure you follow the [Livewire upgrade guide](https://livewire.laravel.com/docs/upgrading).
26
+
27
+
Update your Megaphone requirement to 2.* by running the following command in your terminal.
28
+
29
+
```bash
30
+
composer require mbarlow/megaphone "^2.0"
31
+
```
32
+
33
+
### AlpineJS
34
+
35
+
If you previously included AlpineJS specifically for Megaphone then you can now remove that from your JS include because it is now bundled with Livewire.
36
+
37
+
### Template Changes
38
+
39
+
If you are using the Admin component and are running with the Megaphone views published to your resources folder, you may wish to make these manual changes.
40
+
41
+
Changes are all to `create-announcement.blade.php` which, if published, should be found at `resources/views/vendor/megaphone/admin/create-announcement.blade.php`.
42
+
43
+
Find `wire:model="type"` and replace it with `wire:model.live="type"`.
44
+
45
+
Find all instances of `wire:model.lazy` and replace it with `wire:model.blur`.
46
+
22
47
## Installation
23
48
24
49
Simply require the package via composer into your Laravel app.
25
50
26
51
composer require mbarlow/megaphone
27
52
28
-
If you aren't already using Laravel Livewire in your app, Megaphone should include the package via its dependency. Once composer has finished installing, make sure you run the [Livewire installation steps](https://laravel-livewire.com/docs/2.x/installation).
53
+
If you aren't already using Laravel Livewire in your app, Megaphone should include the package via its dependency. Once composer has finished installing, make sure you run the [Livewire installation steps](https://livewire.laravel.com/docs/installation).
29
54
30
-
Once Livewire has been installed, if you haven't already, ensure the [Laravel Database Notifications have been installed](https://laravel.com/docs/9.x/notifications#database-prerequisites) into your app.
55
+
Once Livewire has been installed, if you haven't already, ensure the [Laravel Database Notifications have been installed](https://laravel.com/docs/10.x/notifications#database-prerequisites) into your app.
31
56
32
57
```bash
33
58
php artisan notifications:table
34
59
35
60
php artisan migrate
36
61
```
37
62
38
-
This should create database table used to house your notifications. Next, make sure your User model (or relevant alternative model) has the notifiable trait added as mentioned in the [Laravel Documentation](https://laravel.com/docs/9.x/notifications#using-the-notifiable-trait) and also add the `HasMegaphone` trait provided by Megaphone.
63
+
This should create database table used to house your notifications. Next, make sure your User model (or relevant alternative model) has the notifiable trait added as mentioned in the [Laravel Documentation](https://laravel.com/docs/10.x/notifications#using-the-notifiable-trait) and also add the `HasMegaphone` trait provided by Megaphone.
39
64
40
65
```php
41
66
<?php
@@ -79,10 +104,6 @@ As default, Megaphone uses TailwindCSS to style the Bell Icon and the notificati
Megaphone requires AlpineJS to power some of its interactivity. If you are already using AlpineJS within your application, you can skip this step. If not you will need to [include AlpineJS into your application](https://alpinejs.dev/essentials/installation) for Megaphone to function properly.
85
-
86
107
## Sending Notifications
87
108
88
109
As default, Megaphone will only load notifications that have been registered within the Megaphone config file. Notifications shipped with Megaphone will be within `config('megaphone.types')`. This will be merged with the key values of `config('megaphone.customTypes')` to create the list of supported notifications.
@@ -100,7 +121,7 @@ $notification = new \MBarlow\Megaphone\Types\Important(
100
121
);
101
122
```
102
123
103
-
Now, simply notify the required user of the notification as per the [Laravel Documentation](https://laravel.com/docs/9.x/notifications#using-the-notifiable-trait).
124
+
Now, simply notify the required user of the notification as per the [Laravel Documentation](https://laravel.com/docs/10.x/notifications#using-the-notifiable-trait).
0 commit comments