davide.cucurnia@vola.it
2024-02-09 3c53556bb0160406221ceb9a0563d8b86bbf4df2
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
<?php
 
namespace App\Models;
 
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
 
class Msisdn extends Model
{
 
    /**
     * The attributes that are mass assignable.
     *
     * @var array<int, string>
     */
    protected $fillable = [
        'VodafoneUser',
        'MSISDN',
        'CardType',
        'IdPiano',
        'VodafoneOne',
        'TopClub',
        'SeniorityCluster',
    ];
 
    public function user()
    {
        return $this->belongsTo('App\Models\VodafoneUser', 'VodafoneUser', 'id');
    }
 
    public function products()
    {
        return $this->hasMany('App\Models\Products','LinkedMSISDN', 'id');
    }
 
}