public function getXoaSanpham($id)
 {
     $gia = Gia::where('id_sanpham', '=', $id)->count();
     $ctn = Chitietnhap::where('id_sanpham', '=', $id)->count();
     if ($gia == 0 && $ctn == 0) {
         $model = Sanpham::find($id);
         Logfileadmin::addData("Xóa", "Sản Phẩm", $model->id, $model->tensp);
         Sanpham::where('id', '=', $id)->delete();
         return Redirect::to('sanpham/xem-sanpham')->with('successdel', "Xóa sản phẩm  thành công");
     } else {
         return Redirect::to('sanpham/xem-sanpham')->with('errordel', "Thất bại. Sản phẩm đang được định giá hoặc tồn tại trong hóa đơn");
     }
 }
 public function getXoaHoadon($id)
 {
     Logfileadmin::addData("Xóa", "Hóa đơn nhập", $id, "Hóa đơn nhập");
     $ctns = Chitietnhap::where('id_phieunhap', '=', $id)->get();
     foreach ($ctns as $ctn) {
         $value = "";
         $value = "ID Hóa Đơn Nhập:{$ctn->id_phieunhap}\n" . "ID Sản phẩm:{$ctn->id_sanpham}\n" . "Đơn Giá:{$ctn->dongia}\n" . "Số Lượng:{$ctn->soluong}";
         Logfileadmin::addData("Xóa", "Chi tiết hóa đơn nhập", $ctn->id, $value);
     }
     Chitietnhap::where('id_phieunhap', '=', $id)->delete();
     Phieunhap::where('id', '=', $id)->delete();
     return Redirect::to('nhap/xem-hoadon');
 }