Browse Source

代理商系统设置

dev
李可松 5 years ago
parent
commit
ac6b1d7712
  1. 18
      app/AdminAgent/Controllers/SettingController.php
  2. 43
      app/AdminAgent/Forms/Setting.php
  3. 13
      resources/lang/zh_CN/setting.php

18
app/AdminAgent/Controllers/SettingController.php

@ -0,0 +1,18 @@
<?php
namespace App\AdminAgent\Controllers;
use App\AdminAgent\Forms\Setting;
use Dcat\Admin\Layout\Content;
use Dcat\Admin\Http\Controllers\AdminController;
use Dcat\Admin\Widgets\Card;
class SettingController extends AdminController
{
public function index(Content $content)
{
return $content
->title('系统设置')
->body(new Card('&nbsp;', new Setting()));
}
}

43
app/AdminAgent/Forms/Setting.php

@ -0,0 +1,43 @@
<?php
namespace App\AdminAgent\Forms;
use Dcat\Admin\Widgets\Form;
class Setting extends Form
{
/**
* Handle the form request.
*
* @param array $input
*
* @return mixed
*/
public function handle(array $input)
{
// dump($input);
admin_setting($input);
return $this->response()->success('保存成功')->refresh();
}
/**
* Build a form here.
*/
public function form()
{
$this->text('earnest')->required()->help('用户支付订金、定金、首付款的金额');
$this->text('earnest_timeout')->required()->help('单位:分钟。当通过订金、定金、首付款支付时,用户超过该时间未支付将关闭订单,且定金不退');
}
/**
* The data of the form.
*
* @return array
*/
public function default()
{
return admin_setting()->toArray();
}
}

13
resources/lang/zh_CN/setting.php

@ -0,0 +1,13 @@
<?php
return [
'labels' => [
'Setting' => '系统设置',
'setting' => '系统设置',
],
'fields' => [
'earnest' => '定金金额',
'earnest_timeout' => '定金支付超时时间',
],
'options' => [
],
];
Loading…
Cancel
Save