Components\Posts\Controllers\Backend\PostCategoriesController::create PHP Метод

create() публичный Метод

Show the form for creating a new post.
public create ( ) : Response
Результат Response
    public function create()
    {
        $this->layout->title = 'New ' . Str::title($this->type) . ' Category';
        $this->layout->content = View::make($this->link_type . '.' . $this->current_theme . '.categories.create_edit')->with('type', $this->type);
    }