id(); $table->string('path')->nullable(); $table->text('title')->nullable(); $table->text('description')->nullable(); $table->text('keywords')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('meta'); } };