PHP code example of mits87 / eloquent-nested-attributes
1. Go to this page and download the library: Download mits87/eloquent-nested-attributes library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
mits87 / eloquent-nested-attributes example snippets
php
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');
}
}