diff --git a/controllers/tourController.js b/controllers/tourController.js
index 416c6b379cf0e08383705534fdf23442f9261808..8572efdb4d69c82c5b90bbbd46a7e202f0a546c0 100644
--- a/controllers/tourController.js
+++ b/controllers/tourController.js
@@ -115,7 +115,7 @@ exports.postCreateTour = async (req, res) => {
     }
   
     try {
-      await Tour.create(name, description, price, duration); // สร้างทัวร์
+      await Tour.createTour(name, description, price, duration); // สร้างทัวร์
       res.redirect('/'); // กลับไปหน้าแรกหลังจากสร้างเสร็จ
     } catch (error) {
       console.error(error);