id(); $table->timestamps(); $table->string('title'); $table->text('description'); $table->string('photo_path'); $table->string('detected_category'); $table->foreignId('assigned_user_id')->nullable()->constrained('users'); $table->foreignId('created_by_user_id')->constrained('users'); //$table->foreignId('category_id')->constrained('waste_categories'); $table->enum('status', ['new', 'in_progress', 'completed'])->default('new'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('requets'); } };