<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; return new class extends Migration { /** * Run the migrations. */ public function up(): void { Schema::create('contact', function(Blueprint $table) { $table->bigIncrements('id'); $table->string('name')->nullable(); $table->string('email')->nullable(); $table->text('message')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::drop('contact'); } };