feat: add verify with link and back to app

This commit is contained in:
2025-09-18 23:18:36 +03:30
parent e44d4064df
commit afd7e349d4
6 changed files with 403 additions and 58 deletions
@@ -0,0 +1,28 @@
<?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('email_verifications', function (Blueprint $table) {
$table->string('token')->nullable()->after('code')->unique();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('email_verifications', function (Blueprint $table) {
//
});
}
};