App\Http\Controllers\Backend\CommentController::edit PHP 메소드

edit() 공개 메소드

Show the form for editing the specified resource.
public edit ( integer $id ) : Response
$id integer
리턴 Dingo\Api\Http\Response
    public function edit($id)
    {
        //
        return view('admin.comments.edit')->withComment(Comment::find($id));
    }