*/ use HasFactory; protected $fillable = ['user_id']; public function user(): BelongsTo { return $this->belongsTo(User::class); } public function products(): BelongsToMany { return $this->belongsToMany(Product::class)->withPivot('quantity'); } }