本文主要是介绍laravel-admin简单事例,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
表:channel渠道表
在菜单中新建菜单规则路径channel/channel:
channel控制器里:
use App\Http\Controllers\Controller; use App\Model\ChannelModel; use Encore\Admin\Form; use Encore\Admin\Grid; use Encore\Admin\Layout\Content; use Encore\Admin\Controllers\ModelForm; use Encore\Admin\Show;class ChannelController extends Controller {use ModelForm;public function index(Content $content){return $content->header('Index')->description('description')->body($this->grid());}public function edit($id, Content $content){return $content->header('Edit')->description('description')->body($this->form()->edit($id));}/*** Create interface.** @param Content $content* @return Content*/public function create(Content $content){ // dump($content);exit;
这篇关于laravel-admin简单事例的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!