id(); $table->string('name'); $table->text('address')->nullable(); $table->string('owner_name')->nullable(); $table->string('phone')->nullable(); $table->decimal('latitude', 10, 8)->nullable(); $table->decimal('longitude', 11, 8)->nullable(); $table->string('city')->nullable(); $table->foreignId('pic_sales_id')->nullable()->constrained('users')->nullOnDelete(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('customers'); } };