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
Breaking change - Changed base query builder delete functionality to better match native Laravel behavior. It now supports passing a primary key. Previously you would need to pass in an internal FileMaker Record ID.
Added a new deleteByRecordId($recordId) function which matches the previous delete($recordId) functionality, accepting an internal FileMaker record ID.
Added support for bulk deletes after a where clause.
Improved all() function to use the existing get() instead of going to the base query to improve result consistency between method calls, particularly with global scopes.