diff --git a/plugins/OfflinePay/Lang/en/common.php b/plugins/OfflinePay/Lang/en/common.php new file mode 100644 index 00000000..ff5894a3 --- /dev/null +++ b/plugins/OfflinePay/Lang/en/common.php @@ -0,0 +1,14 @@ + + * @created 2022-12-27 16:19:06 + * @modified 2022-12-27 16:19:06 + */ + +return [ + 'comment' => 'Description of Offline Pay', +]; diff --git a/plugins/OfflinePay/Lang/zh_cn/common.php b/plugins/OfflinePay/Lang/zh_cn/common.php new file mode 100644 index 00000000..37a0a9fa --- /dev/null +++ b/plugins/OfflinePay/Lang/zh_cn/common.php @@ -0,0 +1,14 @@ + + * @created 2022-12-27 16:19:06 + * @modified 2022-12-27 16:19:06 + */ + +return [ + 'comment' => '转账说明', +]; diff --git a/plugins/OfflinePay/Static/image/logo.png b/plugins/OfflinePay/Static/image/logo.png new file mode 100644 index 00000000..d0a3b526 Binary files /dev/null and b/plugins/OfflinePay/Static/image/logo.png differ diff --git a/plugins/OfflinePay/Views/checkout/payment.blade.php b/plugins/OfflinePay/Views/checkout/payment.blade.php new file mode 100644 index 00000000..1568722b --- /dev/null +++ b/plugins/OfflinePay/Views/checkout/payment.blade.php @@ -0,0 +1,18 @@ +
+ + diff --git a/plugins/OfflinePay/columns.php b/plugins/OfflinePay/columns.php new file mode 100644 index 00000000..ae4ccd84 --- /dev/null +++ b/plugins/OfflinePay/columns.php @@ -0,0 +1,21 @@ + + * @created 2022-12-20 21:16:23 + * @modified 2022-12-20 21:16:23 + */ + +return [ + [ + 'name' => 'comment', + 'label_key' => 'common.comment', + 'type' => 'rich-text', + 'required' => true, + 'rules' => 'required', + 'description' => 'Description to payer', + ], +]; diff --git a/plugins/OfflinePay/config.json b/plugins/OfflinePay/config.json new file mode 100644 index 00000000..a7a269dd --- /dev/null +++ b/plugins/OfflinePay/config.json @@ -0,0 +1,12 @@ +{ + "code": "offline_pay", + "name": "线下支付", + "description": "线下支付", + "type": "payment", + "version": "v1.0.0", + "icon": "/image/logo.png", + "author": { + "name": "成都光大网络科技有限公司", + "email": "mengwb@guangda.work" + } +}