id(); $table->foreignId('azmayesh_type_id')->constrained('azmayesh_types'); $table->string('azmayesh_type_name'); $table->string('lat'); $table->string('lng'); $table->foreignId('province_id')->constrained('provinces'); $table->string('province_name'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('azmayeshes'); } };