From 900ab784ff4ddb94a8c34ee24bde954e61e42b65 Mon Sep 17 00:00:00 2001 From: omair saleh Date: Thu, 22 Apr 2021 14:22:11 +0800 Subject: [PATCH] small change --- routes/web.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/routes/web.php b/routes/web.php index 6ae9e0b0..961e3d7d 100644 --- a/routes/web.php +++ b/routes/web.php @@ -211,10 +211,10 @@ Route::group(['middleware' => ['role:admin']], function() { $total = count($oldCompletedInvoices) + count($newCompletedInvoices); echo "

Total Po Approved: ".$total."

"; foreach ($newCompletedInvoices as $invoice){ - echo "".$invoice->booking->id." - $invoice->booking->bia
"; + echo "".$invoice->booking->id." - ". $invoice->booking->bia."
"; } foreach ($oldCompletedInvoices as $invoice){ - echo "".$invoice->booking->id." - $invoice->booking->bia
"; + echo "".$invoice->booking->id." - ". $invoice->booking->bia."
"; } })->name('po.approved');