id(); $table->string('title'); $table->string('image'); // URL تصویر $table->text('description'); // توضیحات $table->string('link'); // لینک $table->foreignId('about_me_id')->constrained('about_me')->onDelete('cascade'); // ارتباط با جدول about_me $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('skills'); } };