1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- namespace Modules\Common\Services;
- class CommonConfigService
- {
-
- public static function getFirstPageListTypeMap() {
- return collect(config('common.common.firstPageListType'))->keyBy('value')->toArray();
- }
-
- public static function getMiniprogramTypeMap() {
- return collect(config('common.common.miniprogramType'))->keyBy('value')->toArray();
- }
-
- public static function getPayTypeMap() {
- return collect(config('common.common.payType'))->keyBy('value')->toArray();
- }
- }
|