Edit File: PaymentTypeEnum.php
<?php namespace App\Enums; class PaymentTypeEnum extends Base { const ONLINE = 'online'; const WALLET = 'wallet'; public static function values() { return [ self::ONLINE, self::WALLET ]; } }
Back to File Manager