updated timeout from 60 seconds to 10 minutes

This commit is contained in:
Jack Goh
2018-06-18 22:51:33 +08:00
parent 44563624ee
commit 7398ce73d6
+1 -1
View File
@@ -22,7 +22,7 @@ class BookingController extends Controller
$date1 = new DateTime($booking->created_at);
$date2 = new DateTime();
$difference_in_seconds = ($date1->format('U') + 60) - ($date2->format('U'));
$difference_in_seconds = ($date1->format('U') + 600) - ($date2->format('U'));