turtle-wow-source-kinda/Dumps/Source Code/8 - Development_website/master/app/Rules/UsedGamepointsCode.php
Brian Oost a1d5bb70b2 Init
2024-08-06 18:06:40 +02:00

23 lines
557 B
PHP

<?php
namespace App\Rules;
use App\Models\auth\GpHistory;
use Closure;
use Illuminate\Contracts\Validation\ValidationRule;
class UsedGamepointsCode implements ValidationRule
{
/**
* Run the validation rule.
*
* @param \Closure(string): \Illuminate\Translation\PotentiallyTranslatedString $fail
*/
public function validate(string $attribute, mixed $value, Closure $fail): void
{
if (GpHistory::where('code', $value)->first()) {
$fail(__('page_donate')['exception']['already_used']);
}
}
}