id(); $table->foreignId('outlet_id')->constrained()->cascadeOnDelete(); $table->string('name', 30); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('facilities'); } };