<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('setup_pages', function (Blueprint $table) {
$table->id();
$table->string('slug',250)->unique()->nullable();
$table->string("title",255)->nullable();
$table->string("url",255)->nullable();
$table->unsignedBigInteger("last_edit_by")->nullable();
$table->boolean("status")->default(true);
$table->timestamps();
$table->foreign("last_edit_by")->references("id")->on("admins")->onDelete("cascade")->onUpdate("cascade");
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('setup_pages');
}
};
Contact Section
We’d love to hear from you! Whether you have questions, feedback, or need support, our team is here to help. Reach out to us via email, phone, or visit our office. We’re committed to providing you with exceptional service and ensuring your experience with NFC Pay is seamless and satisfying. Let’s connect!