17 lines
422 B
PHP
17 lines
422 B
PHP
<?php
|
|
namespace Yunshop\AreaDividend\widgets;
|
|
|
|
|
|
use app\common\components\Widget;
|
|
use app\common\facades\Setting;
|
|
|
|
class AreaDividendWithdrawWidget extends Widget
|
|
{
|
|
public function run()
|
|
{
|
|
$set = Setting::get('withdraw.areaDividend', ['roll_out_limit' => '', 'poundage_rate' => '']);
|
|
return view('Yunshop\AreaDividend::admin.withdraw-set', [
|
|
'set' => $set,
|
|
])->render();
|
|
}
|
|
} |