CampaignVariable.php
698 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
<?php
namespace App\Models\Pivots;
use App\Models\Campaigns;
use App\Models\Variable;
use Illuminate\Database\Eloquent\Relations\Pivot;
class CampaignVariable extends Pivot
{
protected $fillable = [
'campaign_id',
'variable_id',
'value',
];
protected $casts = [
'campaign_id' => 'int',
'variable_id' => 'int',
];
static public function getWithPivot()
{
return [
'value',
];
}
public function campaign()
{
return $this->belongsTo(Campaigns::class, 'campaign_id');
}
public function variable()
{
return $this->belongsTo(Variable::class, 'variable_id');
}
}