feat: google login
CI / 🧪 Tests Laravel (push) Failing after 9s
CI / 🐳 Build & Push Images (push) Has been skipped

This commit is contained in:
2026-08-17 10:06:35 +02:00
parent c0688044e8
commit ddc80956a0
22 changed files with 1886 additions and 6 deletions
+9
View File
@@ -0,0 +1,9 @@
<?php
namespace App\Enums;
enum SocialProvider: string
{
case Google = 'google';
case Apple = 'apple';
}