海南旅游SAAS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
401 B

4 years ago
  1. <?php
  2. namespace App\Admin\Controllers;
  3. use App\Admin\Forms\ServicePersonsSetting;
  4. use Dcat\Admin\Layout\Content;
  5. use Dcat\Admin\Http\Controllers\AdminController;
  6. use Dcat\Admin\Widgets\Card;
  7. class ServicePersonsSettingController extends AdminController
  8. {
  9. public function index(Content $content)
  10. {
  11. return $content
  12. ->title('交易设置')
  13. ->body(new Card(new ServicePersonsSetting()));
  14. }
  15. }