id(); $table->string('slug')->unique(); $table->string('title_ar'); $table->string('title_en'); $table->longText('content_ar')->nullable(); $table->longText('content_en')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('pages'); } };