Encore\Admin\Controllers\MenuController::create PHP 메소드

create() 공개 메소드

Create interface.
public create ( ) : Content
리턴 Encore\Admin\Layout\Content
    public function create()
    {
        return Admin::content(function (Content $content) {
            $content->header(trans('admin::lang.menu'));
            $content->description(trans('admin::lang.create'));
            $content->row($this->callout());
            $content->row($this->form());
        });
    }