added shipping fee

This commit is contained in:
franknstayn
2020-05-12 20:52:21 +08:00
parent bca94e54cc
commit a2cddafa5f
7 changed files with 417 additions and 374 deletions

View File

@@ -219,4 +219,10 @@ class TeamStoreModel extends Model {
return $i;
}
function delete_cartTmp($field, $cartKey){
$i = DB::table('cart_tmp')
->where($field, $cartKey)
->delete();
return $i;
}
}