Update Dashboard Client Portal

This commit is contained in:
ivan-sim
2026-01-21 17:13:45 +07:00
parent b8a72b8119
commit f10589eb85
13 changed files with 1269 additions and 1 deletions

View File

@@ -0,0 +1,33 @@
<?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::table('navigations', function (Blueprint $table) {
$table->integer('urutan')
->after('updated_at')->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('navigations', function (Blueprint $table) {
$table->dropColumn('urutan');
});
}
};