InfluxOW/laravel_ddd_ecommerce

View on GitHub
app/Components/Purchasable/Enums/Translation/PriceTranslationKey.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace App\Components\Purchasable\Enums\Translation;

enum PriceTranslationKey: string
{
    case PRICE = 'price';
    case PRICE_DISCOUNTED = 'price_discounted';
    case CURRENCY = 'currency';
}