updated paypal

This commit is contained in:
franknstayn
2021-10-30 19:20:22 +08:00
parent 9c2a672cc5
commit 066be69216
2 changed files with 186 additions and 149 deletions

View File

@@ -37,5 +37,15 @@ class PayPalModel extends Model {
->get();
// var_dump($i);
return $i;
}
}
function checkCartKey($ck){
$i = DB::table('payment_details')
->where('CartKey', $ck)
// ->take(1)
->get();
// var_dump($i);
return $i;
}
}