diff --git a/routes/web.php b/routes/web.php index 78c88a31..4c5d74e5 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->amount
"; + echo "".$invoice->booking->id."$invoice->booking->bia
"; } foreach ($oldCompletedInvoices as $invoice){ - echo "".$invoice->booking->id."$invoice->booking->amount
"; + echo "".$invoice->booking->id."$invoice->booking->bia
"; } })->name('po.approved');