'基础设置-快递打印-打印机-添加', // '打印机-编辑' => '基础设置-快递打印-打印机-编辑', // '打印机-删除' => '基础设置-快递打印-打印机-删除', // ]; /** * Run the migrations. * * @return void */ public function up() { Schema::create('terminal_printers', function (Blueprint $table) { $table->id(); $table->string('terminal_id')->comment('终端id'); $table->string('printer_name')->comment('打印机名称'); $table->string('alias_name')->comment('打印机别名'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('terminal_printers'); } }