feat: tambah halaman kontak publik dan inbox pesan masuk di dashboard

This commit is contained in:
2026-04-03 05:33:21 +07:00
parent 3339a45243
commit 396ecdb489
13 changed files with 318 additions and 3 deletions
@@ -0,0 +1,27 @@
<?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('contact_messages', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('email')->nullable();
$table->string('phone')->nullable();
$table->string('subject');
$table->text('message');
$table->timestamp('read_at')->nullable();
$table->timestamps();
});
}
public function down(): void
{
Schema::dropIfExists('contact_messages');
}
};