Edit File: CouponTypeEnum.php
<?php namespace App\Enums; /** * Class ProductTypeEnum * * @method static string all() * @method static string|null nameFor($value) * @method static array toArray() * @method static array forApi() * @method static string slug(int $value) */ class CouponTypeEnum extends Base { const RATIO = 'ratio'; const NUMBER = 'number'; }
Back to File Manager