diff --git a/app/Classes/Modules/Exports/Services/ExportsPaymentTransactions.php b/app/Classes/Modules/Exports/Services/ExportsPaymentTransactions.php index d75aef30..cfdddb40 100644 --- a/app/Classes/Modules/Exports/Services/ExportsPaymentTransactions.php +++ b/app/Classes/Modules/Exports/Services/ExportsPaymentTransactions.php @@ -108,13 +108,13 @@ class ExportsPaymentTransactions implements FromQuery, WithHeadings, WithHeading foreach ($transaction->transactionDetails as $item){ switch($item->reference){ case 'SHIPPING_FEE': - $furtherDescription .= str_replace($item->name, 'X1 Freight Service Charge
', '').'\r\n'; + $furtherDescription .= str_replace($item->name, 'X1 Freight Service Charge
', '')."\n"; case 'MIN_CBM_CHARGES': - $furtherDescription .= $item->name.' '.$item->quantity.' CBM'.'\r\n'; + $furtherDescription .= $item->name.' '.$item->quantity.' CBM'."\n"; case 'OVER_WEIGHT_CHARGES': - $furtherDescription .= $item->name.' '.$item->quantity.' CBM'.'\r\n'; + $furtherDescription .= $item->name.' '.$item->quantity.' CBM'."\n"; default: - $furtherDescription .= $item->name.' '.$item->quantity.' X '.$item->price.'\r\n'; + $furtherDescription .= $item->name.' '.$item->quantity.' X '.$item->price."\n"; }