id(); $table->timestamps(); $table->softDeletes(); $table->string('status')->nullable(); $table->foreignId('cart_id')->nullable()->constrained('carts'); $table->foreignId('patient_id')->nullable()->constrained('patients'); $table->string('message')->nullable(); $table->text('description')->nullable(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('notifications'); } };