id(); $table->string('name'); $table->text('description'); $table->integer('price'); $table->foreignIdFor(\App\Models\Category::class); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('foods'); } };