/home/awneajlw/.trash/database.1/migrations/2024_11_26_075831_create_user_details_table.php
<?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::create('user_details', function (Blueprint $table) {
            $table->id();
            $table->string('user_id')->nullable();
            $table->string('brand_name')->nullable();
            $table->string('brand_detail')->nullable();
            $table->string('brand_logo')->nullable();
            $table->string('address')->nullable();
            $table->string('country')->nullable();
            $table->string('vat_no')->nullable();
            $table->string('company_ltd')->nullable();
            $table->string('footer_no_email')->nullable();
            $table->string('footer_iban')->nullable();
            $table->string('payment_reference')->nullable();
            $table->timestamps();
        });
    }

    /**
     * Reverse the migrations.
     */
    public function down(): void
    {
        Schema::dropIfExists('user_details');
    }
};