id(); $table->string('title'); $table->string('category'); $table->json('images'); // برای ذخیره‌سازی آرایه‌ای از تصاویر $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('projects'); } };