コード例 #1
0
ファイル: OwnerController.php プロジェクト: khanhpnk/sbds
 /**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy(House $house)
 {
     foreach ($house->images as $image) {
         $this->delete($image);
     }
     $house->delete();
     return redirect('m/danh-sach-nha-dat/chinh-chu')->with('flash_message', Lang::get('system.destroy'));
 }