id(); $table->string('name'); $table->string('address_text')->nullable(); $table->decimal('location_lat', 10, 7)->nullable(); $table->decimal('location_lng', 10, 7)->nullable(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('locations'); } };