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
26 lines
517 B
<?php
|
|
|
|
namespace App\AdminSettled\Controllers;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use App\Models\Supplier;
|
|
use Dcat\Admin\Grid;
|
|
|
|
class HomeController extends Controller
|
|
{
|
|
public function index()
|
|
{
|
|
return <<<HTML
|
|
<p><a href="/admin-settled/supplier">供应商入驻</a></p>
|
|
<p><a href="/admin-settled/agent">代理商入驻</a></p>
|
|
<p><a href="/admin-settled/guide">地接入驻</a></p>
|
|
HTML;
|
|
}
|
|
|
|
protected function grid()
|
|
{
|
|
return Grid::make(new Supplier(), function (Grid $grid) {
|
|
|
|
});
|
|
}
|
|
}
|