diff --git a/changelog.md b/changelog.md index cc8ddcc..8b6c556 100644 --- a/changelog.md +++ b/changelog.md @@ -40,3 +40,7 @@ All notable changes to `laravel-notify` will be documented in this file. ## Version 1.1.1 ### Added - Preset notification + +## Version 1.1.2 +### Added +- Custom notification title diff --git a/readme.md b/readme.md index 1137d63..3076905 100644 --- a/readme.md +++ b/readme.md @@ -98,7 +98,7 @@ Laravel Notify actually display 5 types of notifications 1. `toast` notification, who is default notification for Laravel Notify ```php -notify()->success('Welcome to Laravel Notify ⚡️') +notify()->success('Welcome to Laravel Notify ⚡️') or notify()->success('Welcome to Laravel Notify ⚡️', 'My custom title') ``` 2. `connectify` notification, example of basic usage