AdGroupNegativeKeywordSharedSet.php
850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?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');
}
}