当前位置: 首页>>代码示例>>PHP>>正文


PHP Comment::destroy方法代码示例

本文整理汇总了PHP中app\Comment::destroy方法的典型用法代码示例。如果您正苦于以下问题:PHP Comment::destroy方法的具体用法?PHP Comment::destroy怎么用?PHP Comment::destroy使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在app\Comment的用法示例。


在下文中一共展示了Comment::destroy方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: destroy

 public function destroy($id)
 {
     $comment = Comment::find($id);
     $postId = $comment->post_id;
     Comment::destroy($id);
     return redirect('/posts/' . $postId);
 }
开发者ID:erzhu4,项目名称:larvelProject,代码行数:7,代码来源:CommentsController.php

示例2: destroy

 /**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     $comment = Comment::find($id);
     Comment::destroy($id);
     if (Comment::where('author', $comment->author)->count() < 1) {
         User::where('author', $comment->author)->delete();
     }
     return response()->json(['success' => true]);
 }
开发者ID:schrink,项目名称:601-AdvancedWebProject,代码行数:15,代码来源:CommentController.php

示例3: handle

 /**
  * Execute the job.
  *
  * @return void
  */
 public function handle()
 {
     //
     /* 循环删除
        for($i=0; $i<(count($this->id)); $i++)
        {
            $comment = Comment::findOrFail($this->id[$i]);
            $comment->delete();
        }
         */
     try {
         Comment::destroy($this->id);
     } catch (Exception $e) {
         return response($e->getMessage, 422);
     }
 }
开发者ID:shine1rainbow,项目名称:blog,代码行数:21,代码来源:Destory.php

示例4: destroy

 /**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return \Illuminate\Http\Response
  */
 public function destroy()
 {
     Comment::destroy(request('id'));
     return back()->with('message', 'Kommentti poistettu!');
 }
开发者ID:partio-scout,项目名称:kokous_backend,代码行数:11,代码来源:CommentController.php

示例5: destroyCt

 public function destroyCt($id)
 {
     //return $id;
     if (Comment::destroy([$id])) {
         return redirect()->back()->with('Mess', 'Đã xóa');
     } else {
         return redirect()->back()->with('errorMess', 'Có lỗi xảy ra, vui lòng thử lại sau!');
     }
 }
开发者ID:JamesNguyen9x,项目名称:vatc,代码行数:9,代码来源:ReviewController.php

示例6: destroy

 /**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return \Illuminate\Http\Response
  */
 public function destroy($commentid, $id)
 {
     Comment::destroy($id);
     return Redirect::route('admin.comment.show', $commentid);
 }
开发者ID:nikajorjika,项目名称:gamoiwere.ge,代码行数:11,代码来源:CommentController.php

示例7: destroy

 /**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     return response()->json(Comment::destroy($id));
 }
开发者ID:lein00,项目名称:guestbook,代码行数:10,代码来源:CommentController.php

示例8: delete_comment

 public function delete_comment(Request $request)
 {
     return Comment::destroy($request->get('id'));
 }
开发者ID:Hukuta,项目名称:laravel-blog,代码行数:4,代码来源:ArticlesController.php

示例9: destroy

 /**
  * Show the form for editing the specified resource.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     //
     Comment::destroy($id);
 }
开发者ID:j1edward1,项目名称:phpio,代码行数:11,代码来源:CommentController.php

示例10: destroy

 public function destroy(Request $request)
 {
     $id = $request->get('id');
     Comment::destroy($id);
     // return Redirect::back();
 }
开发者ID:uros262,项目名称:test_projekat_blog_laravel5,代码行数:6,代码来源:KontrolerKomentara.php

示例11: destroy

 /**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return \Illuminate\Http\Response
  */
 public function destroy($id)
 {
     //
     if (Comment::destroy($id)) {
         return response()->json(array('status' => 'ok'));
     }
     return response()->json(array('status' => 'error'));
 }
开发者ID:kelsie1231,项目名称:StalkyServerSide,代码行数:14,代码来源:CommentController.php

示例12: destroy

 /**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     Comment::destroy($id);
     return response()->json(['success' => true]);
 }
开发者ID:ronal2do,项目名称:HybridApp,代码行数:11,代码来源:CommentController.php

示例13: destroy

 /**
  * Remove the specified resource from storage.
  *
  * @param  int $id
  * @return Response
  */
 public function destroy($id)
 {
     Comment::destroy($id);
     return redirect()->to('comment')->with('message', 'success create');
 }
开发者ID:patlegris,项目名称:ConfPHP,代码行数:11,代码来源:CommentController.php

示例14: deletecomment

 public function deletecomment($id)
 {
     Comment::destroy($id);
     Log::warning('Something could be going wrong.');
     return array('success' => true);
 }
开发者ID:aaronleslie,项目名称:aaronunix,代码行数:6,代码来源:CommentController.php

示例15: destroy

 /**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     Comment::destroy($id);
     return response()->json(['status' => 'success', 'message' => 'Comment Deleted.']);
 }
开发者ID:bluecipherz,项目名称:bczapi,代码行数:11,代码来源:CommentController.php


注:本文中的app\Comment::destroy方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。