Put back google social login
All checks were successful
Create Docker Image / Build Docker Image (x86_64) (push) Successful in 32s
Create Docker Image / Final Docker Image Manifest (push) Successful in 9s

This commit is contained in:
2024-08-23 17:28:00 +10:00
parent 89fb347806
commit b877a2b673
8 changed files with 337 additions and 119 deletions

View File

@@ -24,6 +24,6 @@ class CollectionOrNull implements CastsAttributes
*/
public function set(Model $model, string $key, mixed $value, array $attributes): mixed
{
return $value->count() ? json_encode($value) : NULL;
return count($value) ? json_encode($value) : NULL;
}
}