feat(auth): implement Google OAuth integration with user authentication and token exchange

This commit is contained in:
2026-07-22 13:43:14 -03:00
parent 855ac13990
commit 873855c85a
10 changed files with 272 additions and 2 deletions

View File

@@ -10,7 +10,7 @@ use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
use Laravel\Sanctum\HasApiTokens;
#[Fillable(['nombre_apellido', 'email', 'password', 'dni', 'telefono'])]
#[Fillable(['nombre_apellido', 'email', 'password', 'dni', 'telefono', 'google_id'])]
#[Hidden(['password', 'remember_token'])]
class User extends Authenticatable
{