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
<?php
 
namespace App\Models;
 
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
 
class Products extends Model
{
 
    /**
     * The attributes that are mass assignable.
     *
     * @var array<int, string>
     */
    protected $fillable = [
        'LinkedMSISDN',
        'TmCode',
        'OMProductId',
        'Name',
        'Description',
    ];
 
    public function msisdn()
    {
        return $this->belongsTo('App\Models\Msisdn', 'LinkedMSISDN', 'id');
    }
 
}