mirror of
https://github.com/michaelachrisco/ReadOnlyTraitLaravel.git
synced 2024-10-31 21:33:23 -07:00
Laravel Read Only Model Traits
eloquenteloquent-modelslaravellaravel-5-packagelaravel-modellaravel-modelslaravel-readphpread-only-laravel
spec | ||
src | ||
.gitignore | ||
.travis.yml | ||
composer.json | ||
LICENSE | ||
README.md |
Laravel 5+ Read Only Models
The read only trait removes the ability to save, delete or modify Laravel models. Ideally, this would be used in addition to DB permissions to ensure users and developers cannot write to a Legacy system.
Install
composer require michaelachrisco/readonly
To use:
<?php
use Illuminate\Database\Eloquent\Model;
class User extends Model {
use \MichaelAChrisco\ReadOnly\ReadOnlyTrait;
}
$legacyUser = new User;
$legacyUser->set_user_name('bob');
$result = $legacyUser->save();
//User is not saved and $result is false.
?>
Methods that will return false:
- create
- forceCreate
- save
- update
- firstOrCreate
- firstOrNew
- delete
- destroy
- restore
- forceDelete
- performDeleteOnModel
- push
- finishSave
- performUpdate
- touch
TODO:
- saveOrFail
- performInsert(??)
- insertAndSetId(??)
- Add in a PR for any other methods you can find!
registerModelEvents( look into best way to implement)
- saving
- saved
- updating
- updated
- creating
- created
- deleting
- deleted