JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "CHANGELOG.md"
Full Path: /var/www/laravel_filter/vendor/luigel/laravel-paymongo/CHANGELOG.md
File size: 792 bytes
MIME-type: text/plain
Charset: utf-8
# Changelog
All notable changes to `laravel-paymongo` will be documented in this file
## 2.4.0 (2023-04-30)
### Added
- Checkouts API
- Support laravel 10
## 2.3.0 (2022-12-15)
### Added
- Links API
- Customers API
### Fixed
- Failing tests
## 1.3.0 (2020-10-31)
### Added
- Added `getData()` for all the models.
- It can now access the properties of the data directly. (eg. `$token->id`)
- Added magic methods to all the models to get the specific data. Using the `get` prefix for the method.
#### Example:
```php
// Get the ID of the token.
$id = $token->getId();
// Get the billing details of the payment method.
$paymentMethod->getBilling();
// Get the billing name of the payment method.
$paymentMethod->getBillingName();
```
- Added artisan commands for webhooks.