Add routes, controllers, models and views

This commit is contained in:
Admin 2026-08-11 06:20:24 +00:00
parent 80d8f78863
commit d47f77b5d9

View file

@ -0,0 +1,24 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
public function up(): void
{
Schema::create('webhook_entries', function (Blueprint $table) {
$table->id();
$table->string('source')->default('verify');
$table->json('payload')->nullable();
$table->json('headers')->nullable();
$table->timestamps();
});
}
public function down(): void
{
Schema::dropIfExists('webhook_entries');
}
};