AdGroupNegativeKeywordSharedSet.php 850 Bytes
<?php

namespace App\Models\Pivots;

use App\Models\AdGroup;
use App\Models\NegativeKeywordSharedSet;
use Illuminate\Database\Eloquent\Relations\Pivot;

class AdGroupNegativeKeywordSharedSet extends Pivot
{
    protected $table = 'ad_group_negative_keyword_shared_sets';

    protected $fillable = [
        'ad_group_id',
        'negative_keyword_shared_set_id',
    ];

    public $incrementing = true;

    static public function getWithPivot()
    {
        return [
            'id',
            'ad_group_id',
            'negative_keyword_shared_set_id',
        ];
    }

    public function adGroup()
    {
        return $this->belongsTo(AdGroup::class, 'ad_group_id');
    }

    public function negativeKeywordSharedSet()
    {
        return $this->belongsTo(NegativeKeywordSharedSet::class, 'negative_keyword_shared_set_id');
    }

}