belongsTo(Currency::class, 'currency_code'); } public function user() { return $this->belongsTo(User::class); } public function items() { return $this->hasMany(CartItem::class); } public function coupon() { return $this->belongsTo(Coupon::class); } }