标签:rip 技巧 ota inf cti mic ipa app param
生成默认控制器的时候,我们看到detail页面是使用了方法$this->detail($id), 出现的界面是这样的如果我们需要重构这个界面,例如使用tab增加更多的信息到这个界面怎么做呢?
需要在controller中重构调用$this->detail($id)的方法show.
/**
@return Content
*/
public function show($id, Content $content)
{
$tab = new Tab();
$tab->add(‘基本信息‘, $this->detail($id));
$tab->add(‘已审核人员‘, $this->participantHaveApproved($id));
//$tab->add(‘主持人报名‘, $this->participantNotApproved($id, 1));
return $content
->title($this->title())
->description($this->description[‘show‘] ?? trans(‘admin.show‘))
->body($tab);
}
laravel admin 使用技巧 - 重构detail 页面(新手速来,大神绕道)
标签:rip 技巧 ota inf cti mic ipa app param
原文地址:https://blog.51cto.com/3154408/2501428