diff --git a/routes/web.php b/routes/web.php
index a66457a6..e912b49d 100644
--- a/routes/web.php
+++ b/routes/web.php
@@ -411,9 +411,11 @@ Route::get('/pending_orders', function(){
echo '
Booking | ';
echo 'Payment Currency | ';
echo 'Payment Amount | ';
+ echo ' | ';
echo 'Customer | ';
echo 'Booking Currency | ';
echo 'Booking Amount | ';
+ echo ' | ';
echo 'Service | ';
echo 'Payment Updated | ';
echo 'Cust Supplier Acc Type | ';
@@ -442,9 +444,11 @@ Route::get('/pending_orders', function(){
echo ''.$booking->marking.' | ';
echo ''.$payment->currency->short_code.' | ';
echo ''.number_format(bcsub($payment->amount, $refunds, 7), 5, '.', '').' | ';
+ echo ' | ';
echo ''.$booking->company->reference.' | ';
echo ''.$payment->original_currency->short_code.' | ';
echo ''.number_format(bcsub($payment->original_amount, $original_refunds, 7), 5, '.', '').' | ';
+ echo ' | ';
echo ''.$booking->service->name.' | ';
echo ''.$payment->updated_at->diffForHumans().' | ';
echo ''.$bankType.' | ';