diff --git a/routes/web.php b/routes/web.php
index 1e400c3a..5888db3a 100644
--- a/routes/web.php
+++ b/routes/web.php
@@ -197,8 +197,10 @@ Route::get('/min_cbm', function (){
});
})->limit(1)->get();
+ $i = 0;
foreach ($companies as $company) {
- echo route('customer.profile', $company->inviters()->withPivot('invitee_reference')->first()->pivot->invitee_reference).'
';
+ $marking = $company->inviters()->withPivot('invitee_reference')->first()->pivot->invitee_reference;
+ echo ''.$i++.'. '.$marking.'
';
}
});
Route::get('/export/customer-latest-order-date/f614e339d7058904a831aad742e24d55', 'Exports\ExportCustomersToExcelController@export');
\ No newline at end of file