Releases: BinarCode/laravel-restify
Releases · BinarCode/laravel-restify
4.10.0
Added
- For the
BelongsToMany
,MorphToMany
fields now you can specify validations rules using:
BelongsToMany::make('roles', 'roles', RolesRepository::class)->validationCallback(fn(Request $request) => ....))
- Added
->unique()
toBelongsToMany
kind fields, so you can validate unicity of your pivot table entries. - Fixed
$withs
property for repositories when force eager loading.
4.9.2
4.9.1
4.9.0
4.8.0
Added
- Action logs - CRUD operations could be logged into your database (check the upgrade guideline to see how to benefit from this).
- Support for https://github.com/BinarCode/restifyjs/
Fixes
- JSON responses for the forgot and reset passwords.