GoalAdvertisementGoalAdExtension.php
842 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\AdExtension;
use App\Models\Advertisement;
use Illuminate\Database\Eloquent\Relations\Pivot;
class GoalAdvertisementGoalAdExtension extends Pivot
{
protected $table = 'goal_advertisement_goal_ad_extensions';
protected $fillable = [
'goal_advertisement_id',
'goal_ad_extension_id',
];
public $incrementing = true;
static public function getWithPivot()
{
return [
'id',
'goal_advertisement_id',
'goal_ad_extension_id',
];
}
public function GoalAdvertisement()
{
return $this->belongsTo(GoalAdvertisement::class, 'goal_advertisement_id');
}
public function adExtension()
{
return $this->belongsTo(GoalAdExtension::class, 'goal_ad_extension_id');
}
}