Releases: laracraft-tech/laravel-date-scopes
Releases · laracraft-tech/laravel-date-scopes
v2.0.0
What's Changed
- It's now possible to pass
startFrom
as a parameter to query between certain ranges. For instance: Transaction::ofLastYear(startFrom: '2020-01-01')
. You may need to change the order of your arguments or use named arguments. Checkout UPGRADING file for that.
v1.1.1
What's Changed
- added tests for custom created_at column name
v1.1.0
What's Changed
- support for custom created_at column names per model #5
v1.0.6
Added
- method doc blocks for IDE auto-completion
v1.0.4
Fixed
- fixed overflow date units
- fixed singular scopes
- fixed second date unit
Added