mits87 / eloquent-nested-attributes
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.
Installs: 362
Dependents: 0
Suggesters: 0
Security: 0
Stars: 13
Watchers: 3
Forks: 11
Open Issues: 0
Requires
- php: >=7.0
- illuminate/database: ^5.4
- illuminate/support: ~5.1
- mockery/mockery: ^0.9.9
Requires (Dev)
- phpunit/phpunit: >=5.4.3
- squizlabs/php_codesniffer: ^2.3
README
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.
Structure
If any of the following are applicable to your project, then the directory structure should follow industry best practises by being named the following.
src/
tests/
vendor/
Install
Via Composer
$ composer require mits87/eloquent-nested-attributes
Usage
namespace App; use Eloquent\NestedAttributes\Model; class Post extends Model { protected $fillable = ['title']; protected $nested = ['option', 'comments']; public function option() { //it can be also morphOne return $this->hasOne('App\Option'); } public function comments() { //it can be also morphMany return $this->hasMany('App\Comment'); } }
or
namespace App; use Illuminate\Database\Eloquent\Model; use Eloquent\NestedAttributes\Traits\HasNestedAttributesTrait; class Post extends Model { use HasNestedAttributesTrait; ... }
usage:
\App\Post::create([ 'title' => 'Some text', 'option' => [ 'info' => 'some info' ], 'comments' => [ [ 'text' => 'Comment 1' ], [ 'text' => 'Comment 2' ], ] ]); \App\Post::findOrFail(1)->update([ 'title' => 'Better text', 'option' => [ 'info' => 'better info' ], 'comments' => [ [ 'id' => 2, 'text' => 'Comment 2' ], ] ]);
to delete nested row you should pass _destroy
attribute:
\App\Post::findOrFail(1)->update([ 'title' => 'Better text', 'option' => [ 'info' => 'better info' ], 'comments' => [ [ 'id' => 2, '_destroy' => true ], ] ]);
Change log
Please see CHANGELOG for more information on what has changed recently.
Testing
$ composer test
Contributing
Please see CONTRIBUTING and CODE_OF_CONDUCT for details.
Security
If you discover any security related issues, please email mits87@gmail.com instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.