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

26 lines
517 B

  1. <?php
  2. namespace App\AdminSettled\Controllers;
  3. use App\Http\Controllers\Controller;
  4. use App\Models\Supplier;
  5. use Dcat\Admin\Grid;
  6. class HomeController extends Controller
  7. {
  8. public function index()
  9. {
  10. return <<<HTML
  11. <p><a href="/admin-settled/supplier">供应商入驻</a></p>
  12. <p><a href="/admin-settled/agent">代理商入驻</a></p>
  13. <p><a href="/admin-settled/guide">地接入驻</a></p>
  14. HTML;
  15. }
  16. protected function grid()
  17. {
  18. return Grid::make(new Supplier(), function (Grid $grid) {
  19. });
  20. }
  21. }