feat: 統一各模組分頁組件佈局並新增系統設定功能相關檔案
All checks were successful
ERP-Deploy-Demo / deploy-demo (push) Successful in 1m5s

This commit is contained in:
2026-02-25 16:16:49 +08:00
parent 878b90e2ad
commit e3df090afd
59 changed files with 889 additions and 299 deletions

View File

@@ -0,0 +1,29 @@
<?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('system_settings', function (Blueprint $table) {
$table->id();
$table->string('group')->index()->comment('設定分組');
$table->string('key')->unique()->comment('設定鍵名');
$table->text('value')->nullable()->comment('設定值');
$table->string('type')->default('string')->comment('資料型別');
$table->string('description')->nullable()->comment('功能說明');
$table->timestamps();
});
}
public function down(): void
{
Schema::dropIfExists('system_settings');
}
};