海南旅游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.

23 lines
445 B

  1. <?php
  2. namespace App\Admin\Controllers;
  3. use App\Admin\Forms\Setting;
  4. use Dcat\Admin\Http\Controllers\AdminController;
  5. use Dcat\Admin\Layout\Content;
  6. use Dcat\Admin\Widgets\Card;
  7. /**
  8. * 系统设置
  9. * Class SettingController
  10. * @package App\Admin\Controllers
  11. */
  12. class SettingController extends AdminController
  13. {
  14. public function index(Content $content)
  15. {
  16. return $content
  17. ->title('系统设置')
  18. ->body(new Card(new Setting()));
  19. }
  20. }