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
@@ -0,0 +1,31 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('users', function (Blueprint $table) {
$table->string('provider_name')->nullable();
$table->string('provider_id')->nullable();
$table->unique(['provider_name', 'provider_id']);
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('users', function (Blueprint $table) {
$table->dropUnique(['provider_name', 'provider_id']);
$table->dropColumn(['provider_name', 'provider_id']);
});
}
};