added new status for user tracking nav bar

fixed top nav for admin only
This commit is contained in:
Jack Goh
2018-06-28 12:08:12 +08:00
parent 2ddd9704bd
commit ee7fe28f74
7 changed files with 127 additions and 211 deletions
+4 -1
View File
@@ -40,7 +40,7 @@ class BookingController extends Controller
// TODO : transfer_amount change name to bia
$booking->transfer_amount = $booking->bia;
$booking->track_status = "(". $booking->status ."/6)";
$booking->track_status = "(". $booking->status ."/7)";
switch ($booking->status) {
case 1:
$status_desc = "Order in progress";
@@ -60,6 +60,9 @@ class BookingController extends Controller
case 6:
$status_desc = "Processing invoice";
break;
case 7:
$status_desc = "Order Completed";
break;
default:
$status_desc = "";
}