jh-admin/addon/saas/shop/controller/Settlement.php

18 lines
276 B
PHP

<?php
namespace addon\saas\shop\controller;
class Settlement extends SaasBase
{
public function list()
{
if (request()->isAjax()) {
return success();
}
$this->forthMenu();
return $this->fetch('settlement/list');
}
}