You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The payload for a bulk delete should contain an array of primary keys for the models you want to delete:
669
+
670
+
```json
671
+
[
672
+
1, 10, 15
673
+
]
674
+
```
675
+
676
+
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.
677
+
665
678
## Force eager loading
666
679
667
680
However, Laravel Restify [provides eager](/search/) loading based on the query `related` property, you may want to force
0 commit comments