Implement OIDC authentication via Laravel Socialite

This commit is contained in:
2026-04-26 16:32:53 -04:00
parent c0176f9924
commit c2c9464133
11 changed files with 605 additions and 3 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ class User extends Authenticatable implements FilamentUser, HasName
* @var array
*/
protected $fillable = [
'name', 'email', 'password',
'name', 'email', 'password', 'provider_name', 'provider_id',
];
/**