UserDetail.php
1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
namespace App\Admin\Renderable;
use App\Admin\Repositories\Inquiry;
use App\Admin\Repositories\User;
use App\Models\InquiryItems;
use Dcat\Admin\Grid;
use Dcat\Admin\Grid\LazyRenderable;
use Dcat\Admin\Models\Administrator;
use Dcat\Admin\Show;
use Dcat\Admin\Widgets\Table;
class UserDetail extends \Dcat\Admin\Support\LazyRenderable
{
public function render()
{
$id = $this->key;
// 只填充内容,不需要标题
return Show::make($id, new User(), function (Show $show) {
$show->panel()
->tools(function ($tools) {
// $tools->disableEdit();
$tools->disableList();
$tools->disableDelete();
});
$show->row(function (Show\Row $show) {
$show->width(4)->field('company_name');
$show->width(4)->field('user_sn');
});
$show->row(function (Show\Row $show) {
$show->width(4)->field('first_name');
$show->width(4)->field('last_name');
});
$show->row(function (Show\Row $show) {
$show->width(4)->field('phone');
$show->width(4)->field('email');
});
$show->row(function (Show\Row $show) {
$show->width(4)->field('reg_source')->using(admin_trans('user.options.reg_source'));
$show->width(4)->field('remark');
});
});
}
}