list customer with delayed shipment

This commit is contained in:
Omair Saleh
2022-10-18 13:49:29 +08:00
parent f96321c854
commit 5d49847f1f
+1 -1
View File
@@ -443,7 +443,7 @@ Route::get('/delayed_container/customers', function(){
foreach ($companies as $company){
$marking = $company->inviters()->withPivot('invitee_reference')->first()->pivot->invitee_reference;
echo '<a target="_blank" href="'.routes('customer.profile', $marking).'">'.$marking.'</a><br>';
echo '<a target="_blank" href="'.route('customer.profile', $marking).'">'.$marking.'</a><br>';
}