id(); $table->text('title'); $table->text('description')->nullable()->default(null); $table->unsignedInteger('sort')->default(0); $table->boolean('is_default')->default(0); $table->unsignedInteger('price')->default(0); $table->string('icon')->nullable(); $table->softDeletes(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('transports'); } };