Hi,
Does anyone know how to correctly do the findretros vote thing on Cosmic CMS? I tried multiple thing, but most recent I tried the following code:
Does anyone know how to correctly do the findretros vote thing on Cosmic CMS? I tried multiple thing, but most recent I tried the following code:
protected function login(Player $user)
{
if ($user && Auth::login($user)) {
response()->json(["status" => "error", "location" => "You must be registered for see links"]);
} else {
response()->json(["status" => "error", "message" => Locale::get('login/invalid_password')]);
}
}