id(); $table->string('nama'); $table->string('lokasi'); $table->boolean('wifi')->default(false); $table->string('jarak_kampus'); $table->text('fasilitas'); $table->string('harga'); $table->string('gambar')->nullable(); $table->decimal('latitude', 10, 7)->nullable(); $table->decimal('longitude', 10, 7)->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('cafes'); } };