-
Added
default
option to saved card tokens. -
Added cardholder name, expiration date, and brand to saved card tokens.
-
BREAKING! Active cards are automatically filtered in PayzeCardToken model via global scope. Scope
active
model will now filter non-expired cards, instead of activated ones.Before:
$query->where('active', true)
After:
$query->where('expiration_date', '>=', Carbon::now())
Please refer to this section to read more details.
- Bumped PHP to version 7.4, Added property types (7ec95e2)
- Use
Relation::morphMap()
aliases for transactions and card tokens tables (133dcab) - Fixed split method (0a7a719)
- Minor bug fixes
- Added Transaction ID column to PayzeLog model (ee30e45)
- Added support of UZB language (d6dd3a7)
- Added support of UZS currency (ee76cc5)