App\Http\Controllers\Backend\CommentController::edit PHP Méthode

edit() public méthode

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