コード例 #1
0
ファイル: LableController.php プロジェクト: todayqq/TodayBlog
 /**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     $lable = Lable::find($id);
     $lable->delete();
     return Redirect::to('Today/lable');
 }