PK
œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
Notice: ob_end_clean(): Failed to delete buffer. No buffer to delete in /home/foruwedy/public_html/57dae0/index.php on line 8
| Dir : /home/foruwedy/www/vendor/qirolab/laravel-reactions/ |
| Server: Linux premium227.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64 IP: 66.29.146.38 |
| Dir : /home/foruwedy/www/vendor/qirolab/laravel-reactions/CHANGELOG.md |
# Changelog
All notable changes to `laravel-reactions` will be documented in this file
## 2.7.0 - 2023-02-14
- Drop support for Laravel v6, v7
- Laravel 10.x support
## 2.6.2 - 2022-12-13
- Optimize Reaction Summary
## 2.6.1 - 2022-11-14
- Add a publishable config file with a 'table_name' key
## 2.6.0 - 2022-02-11
- Laravel 9.0 support
- Drop support for Laravel 5.*
## 2.5.0 - 2020-09-09
- Laravel 8.0 support
## 2.4.0 - 2020-03-09
- Laravel 7.0 support
## 2.3.0 - 2019-09-18
- Laravel 6.0 support
## 2.2.0 - 2019-04-01
### Fixed
- Changed output for `reactionSummary()` and 'reaction_summary' method in reactable model.
```php
$article->reactionSummary();
$article->reaction_summary;
// example
$article->reaction_summary->toArray();
// output
/*
[
"like" => 5,
"dislike" => 2,
"clap" => 4,
"hooray" => 1
]
*/
```
- Fixed `toggleReaction()` function. Now it will return `Qirolab\Laravel\Reactions\Models\Reaction` object.
### Added
- new `reacted()` method added on in reactable model.
```php
$article->reacted(); // current login user
```
- new `reactedOn($article)` method added to reacts model.
```php
$user->reactedOn($article);
```
## 2.1.0 - 2019-03-20
- Laravel 5.8 compatibility
## 2.0.0 - 2018-12-31
- package namespace changed from Hkp22 to Qirolab.
- package vendor name changed from hkp22 to qirolab. Now to install this package required new command to run `composer require qirolab/laravel-reactions`.
## 1.0.0 - 2018-07-19
- initial release