<?php
namespace App\Enums;
abstract class PaymentMethod
{
const CARD = 'CARD';
const WALLET = 'WALLET';
}