moneyService.php 298 B

12345678910111213141516171819
  1. <?php
  2. namespace App\Services;
  3. use Illuminate\Support\Str;
  4. class moneyService
  5. {
  6. public function multiply2($money){
  7. $random = rand(1, 10);
  8. if($random % 2 == 0){
  9. $money=$money*2;
  10. }
  11. else{
  12. $money=0;
  13. }
  14. return $money;
  15. }
  16. }