Edit File: PaymentMethods.php
<?php namespace App\Enums; class PaymentMethods extends Base { public const CASH = 'cash'; public const WALLET = 'wallet'; public const ONLINE = 'ONLINE'; public const NOT_SELECTED = 'not_determined'; }
Back to File Manager