File: D:/HostingSpaces/SBogers10/shop.komma.nl/app/Auth/UniqueAccountUserRule.php
<?php
namespace App\Auth;
use App\Users\SiteUser;
use Illuminate\Contracts\Validation\Rule;
class UniqueAccountUserRule implements Rule
{
/**
* Create a new rule instance.
*
* @return void
*/
public function __construct()
{
//
}
/**
* Determine if the validation rule passes.
*
* @param string $attribute
* @param mixed $value
* @return bool
*/
public function passes($attribute, $value)
{
return SiteUser::where('email', '=', $value)->where('is_guest', '=', 0)->count() === 0;
}
/**
* Get the validation error message.
*
* @return string
*/
public function message()
{
return __('validation.unique');
}
}