|
@@ -0,0 +1,30 @@
|
|
|
+<?php
|
|
|
+/**
|
|
|
+ * Created by PhpStorm.
|
|
|
+ * User: wangzhiqiang
|
|
|
+ * Date: 2019/4/24
|
|
|
+ * Time: 9:36
|
|
|
+ */
|
|
|
+namespace App\Http\Controllers;
|
|
|
+
|
|
|
+class ConfigController extends Controller
|
|
|
+{
|
|
|
+ /**
|
|
|
+ * Create a new controller instance.
|
|
|
+ *
|
|
|
+ * @return void
|
|
|
+ */
|
|
|
+ public function __construct()
|
|
|
+ {
|
|
|
+ //
|
|
|
+ }
|
|
|
+ public function index()
|
|
|
+ {
|
|
|
+ $data = [
|
|
|
+ //商品类型
|
|
|
+ 'order_expired_time' => config('customer.order_expired_time')
|
|
|
+ ];
|
|
|
+ return $this->jsonSuccess($data, '成功');
|
|
|
+ }
|
|
|
+
|
|
|
+}
|