PHP Classes

File: src/Enums/PaymentMethod.php

Recommend this page to a friend!
  Packages of Daryl Legion   PayRex Laravel   src/Enums/PaymentMethod.php   Download  
File: src/Enums/PaymentMethod.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: PayRex Laravel
Request payments using the PayRex service
Author: By
Last change:
Date: 13 days ago
Size: 280 bytes
 

Contents

Class file image Download
<?php

declare(strict_types=1);

namespace
LegionHQ\LaravelPayrex\Enums;

enum PaymentMethod: string
{
    case
Card = 'card';
    case
GCash = 'gcash';
    case
Maya = 'maya';
    case
BillEase = 'billease';
    case
QrPh = 'qrph';
    case
BdoInstallment = 'bdo_installment';
}