Releases: BinarCode/laravel-restify
Releases · BinarCode/laravel-restify
6.12.0
Added
- Bulk side effect actions fixed.
6.11.1
Performance
- Do not check relationships if no query with relationships.
6.11.0
Added
setTitle
for filters so the FE could display them
public static function matches(): array
{
return [
'invoice_id' => MatchFilter::make()
->setType('array')
->setTitle('Job Number')
->setRelatedRepositoryKey(InvoiceRepository::uriKey()),
];
}
6.10.0
Added
Bulk delete flow
The payload for a bulk delete should contain an array of primary keys for the models you want to delete:
These models will be resolved from the database and check for the deleteBulk
policy permission, in case any of the models isn't allowed to be deleted, no entry will be deleted.
6.9.3
Fixed
- Change return value of handle method in getter #455
6.9.0
Added
- Support to choose custom columns for
BelongsTo
and BelongsToMany
and MorphMany
relationships
Fixed
6.8.2
Fixed
- Fixed image
has
filesystem on null.