id(); $table->string('name'); $table->string('url'); $table->longText('icon_svg')->nullable(); $table->string('color')->default('#4f46e5'); $table->text('desc')->nullable(); $table->string('tag')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('apps'); } };