I have a project idea that would utilize a virtual credit card. The idea is that I would have a centralized fund (bank account) that can be linked up to "disposable credit card numbers". For example if someone was authorized to make a purchase for $10, an api call would be made to generate a temporary credit card number that has a maximum limit of their purchase amount ($10). Once the purchase of $10 is made the card number should be no longer valid. And this would happen on a rinse and repeat basis where on call temp card details are generated for a user and then disposed of when the purchase is made. However, I have not a clue where to start. Does anyone know of such services that offer VCC?
Via Active questions tagged javascript - Stack Overflow https://ift.tt/BpEImlW
i'm trying to display data from the database in the admin dashboard i used this: <?php use Illuminate\Support\Facades\DB; $users = DB::table('users')->count(); echo $users; ?> and i have successfully get the correct data from the database but what if i want to display a specific data for example in this user table there is "usertype" that specify if the user is normal user or admin i want to user the same code above but to display a specific usertype i tried this: <?php use Illuminate\Support\Facades\DB; $users = DB::table('users')->count()->WHERE usertype =admin; echo $users; ?> but it didn't work, what am i doing wrong? source https://stackoverflow.com/questions/68199726/how-to-show-number-of-registered-users-in-laravel-based-on-usertype
Comments
Post a Comment