id(); $table->timestamps(); $table->string('app_name', 100); $table->string('app_link', 150); $table->text('app_access'); $table->boolean('isActive'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('menu_apps'); } };