AdvertisementAdExtension.php
782 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 AdvertisementAdExtension extends Pivot
{
protected $table = 'advertisement_ad_extensions';
protected $fillable = [
'advertisement_id',
'ad_extension_id',
];
public $incrementing = true;
static public function getWithPivot()
{
return [
'id',
'advertisement_id',
'ad_extension_id',
];
}
public function advertisement()
{
return $this->belongsTo(Advertisement::class, 'advertisement_id');
}
public function adExtension()
{
return $this->belongsTo(AdExtension::class, 'ad_extension_id');
}
}