add currency for teamstore

This commit is contained in:
Frank John Begornia
2019-08-19 21:37:47 +08:00
parent e60bb3baf8
commit b7e81adf31
68 changed files with 9977 additions and 442 deletions

View File

@@ -67,8 +67,9 @@ class UserModel extends Model {
function selectPaymentDetails($field, $val){
$i = DB::table('payment_details')->where($field, $val)
->get();
$i = DB::table('payment_details')
->where($field, $val)
->get();
return $i;
}