13 lines
250 B
PHP
13 lines
250 B
PHP
<?php
|
|
|
|
namespace App\Helpers;
|
|
|
|
use Illuminate\Support\Facades\Hash;
|
|
|
|
class SecurityHelper
|
|
{
|
|
public static function generateBetHash($userId, $amount, $gameId)
|
|
{
|
|
return Hash::make($userId . $amount . $gameId . now()->timestamp);
|
|
}
|
|
} |