Components\Posts\Controllers\Backend\PostsController::create PHP Method

create() public method

Show the form for creating a new post.
public create ( ) : Response
return Response
    public function create()
    {
        $this->layout->title = 'New ' . Str::title($this->type);
        $this->layout->content = View::make($this->link_type . '.' . $this->current_theme . '.posts.create_edit');
    }