Libraries tagged by model saver
waavi/model
14431 Downloads
Eloquent models with auto validation on save and update.
okipa/laravel-model-json-storage
1378 Downloads
Storing your models in a json file rather than in database (single or few lines recording) can be a good option. This package saves you to create a table for a ridiculous amount of lines, improves the data recovery performances, and allows you to store and access to your models from a json files as you would do it in database.
marena/yii2-relation-trait
3416 Downloads
Yii 2 Models load with relation, & transaction save with relation
svandragt/silverstripe-optimisticlocking
7 Downloads
Prevents your site users from losing data by blocking the save process if the data has changed since it was loaded by the current user.
larapack/attribute-purging
712 Downloads
Allows you to define what attributes in your Eloquent Model which should be not be inserted into the database.
zgldh/laravel-query-filter
13 Downloads
An easier way to filter Eloquent and Models. Save you from Request::input and Where hell.
subhashladumor/laravel-helperbox
30 Downloads
Laravel HelperBox packs 600+ advanced helpers - SQL optimization, caching, APIs, AI tools, arrays, strings, Blade & model utilities. ?? Save time, boost performance & simplify coding for every project, from startups to enterprise.
aegued/laravel-translations
103 Downloads
Create translations of the fields of a Model and save them in the database
markwalet/laravel-hashed-route
3859 Downloads
A Laravel package that replaces the default route model binding for a safer version.
solutosoft/yii-linkmany
2350 Downloads
Load, validate and save automatically related Active Record models
jaysson/eloquent_filefield
1750 Downloads
Automatically save files assigned to eloquent model attributes
mvnrsa/laravel-sluggable-trait
49 Downloads
A trait you can apply to Eloquent models to have slugs automatically generated on save. A slight omprovement on martinbean/laravel-sluggable-trait to use underscore (or any other character) instead of dash in slugs.
kirillemko/yii2-activerecord-history
401 Downloads
Save history of changes of ActiveRecord model
rkooistra/super-eloquent-repository
3017 Downloads
A concrete repository for Eloquent models to allow quick implementation of common functionalities, such as CRUD and search methods. Save yourself the boring stuff.
mits87/eloquent-nested-attributes
364 Downloads
Nested attributes allow you to save attributes on associated records through the parent. By default nested attribute updating is turned off and you can enable it using the $nested attribute. When you enable nested attributes an attribute writer is defined on the model.