PHP code example of huboshen / laravel-one-to-many-sync

1. Go to this page and download the library: Download huboshen/laravel-one-to-many-sync 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/ */

    

huboshen / laravel-one-to-many-sync example snippets


Huboshen\OneToManySync\OneToManySyncServiceProvider::class,

class Post extends Model
{
    protected $fillable = ['title'];

    public $timestamps = true;

    /**
     * @return \Illuminate\Database\Eloquent\Relations\HasMany
     */
    public function comments()
    {
        return $this->hasMany(Comment::class);
    }
}

$post->comments()->sync_one_to_many([
    ['id' => 1, 'body' => 'update the comment where id = 1'],
    ['body' => 'this is a new comment without a id yet'],
]);

$post->comments()->sync_one_to_many([
    ['id' => 1, 'body' => 'update the comment where id = 1'],
    ['body' => 'this is a new comment without a id yet'],
], false);

$post->comments()->sync_one_to_many([
    ['id' => 1, 'body' => 'update the comment where id = 1'],
    ['body' => 'this is a new comment without a id yet'],
], true, false);

class PostPoly extends Model
{
    protected $table = "posts_poly";
    
    protected $fillable = ['title'];

    /**
     * Get all of the post's comments.
     */
    public function comments()
    {
        return $this->morphMany('App\Models\CommentPoly', 'commentable');
    }
}

$post->comments()->sync_one_to_many_morph(
[
    ['id' => 1, 'body' => 'update the comment where id = 1'],
    ['body' => 'this is a new comment without a id yet'],
]);