Libraries tagged by data-modifier
thruster/data-modifier-bundle
7 Downloads
Thruster DataModifier Bundle
thruster/data-modifier-actions-bundle
8 Downloads
Thruster DataModifierActions Bundle
thruster/data-modifier-actions
21 Downloads
Thruster DataModifier Actions
thruster/data-modifier
45 Downloads
Thruster DataModifier Component
newism/craftcms-revved-url
14 Downloads
Rev CraftCMS asset urls with date modified timestamps
mobilestock/laravel-model-affected-rows-verification
1539 Downloads
laravel-model-affected-rows-verification is a library that extends the default Laravel model to include implicit row count verification for update and delete operations. This ensures that these operations are conducted safely, providing an extra layer of validation to prevent unintended data modifications and enhance the stability of your Laravel applications.
jeffersongoncalves/laravel-created-by
7 Downloads
This Laravel package automatically logs the currently logged-in user's ID to the `created_by`, `updated_by`, `deleted_by`, and `restored_by` fields of your Eloquent models. It also automatically timestamps the `restored_at` field when a model is restored. This simplifies the tracking of data modifications and provides valuable auditing capabilities. The package is easy to install and configure, seamlessly integrating with your existing Laravel application.
savioamin/laravel-model-affected-rows-verification
3 Downloads
laravel-model-affected-rows-verification is a library that extends the default Laravel model to include implicit row count verification for update and delete operations. This ensures that these operations are conducted safely, providing an extra layer of validation to prevent unintended data modifications and enhance the stability of your Laravel applications.
coco-project/sql-cache
20 Downloads
Based on the lexical analysis of "update," "select," "insert," and "delete" SQL statements, an automatic caching strategy is implemented. The strategy involves caching the data when executing a select operation and associating the table name contained in the SQL statement with the corresponding cached records. When executing update, insert, or delete operations, the table name from the SQL statement is extracted, and any cached records containing this table name from previous select operations are deleted. This strategy enables seamless caching without delay and eliminates the need to worry about data synchronization issues. It is particularly effective for tables with infrequent data modifications. For tables with frequent modifications, they can be ignored by configuring the strategy accordingly.