コード例 #1
0
ファイル: PostController.php プロジェクト: sekouzed/cabinet
 /**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     if (!$this->post->find($id)) {
         return App::abort(500);
     }
     $this->post->delete($id);
     return Redirect::back();
 }