CampaignVariable.php
1.07 KB
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
40
41
42
43
44
45
46
47
48
<?php
namespace App\Models\Pivots;
use App\Models\Campaigns;
use App\Models\Variable;
use Illuminate\Database\Eloquent\Relations\Pivot;
/**
* App\Models\Pivots\CampaignVariable
*
* @property-read Campaigns $campaign
* @property-read Variable $variable
* @method static \Illuminate\Database\Eloquent\Builder|CampaignVariable newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|CampaignVariable newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|CampaignVariable query()
* @mixin \Eloquent
*/
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');
}
}