diff --git a/resources/views/receiptpdf.blade.php b/resources/views/receiptpdf.blade.php
index 2238f4d..955a046 100644
--- a/resources/views/receiptpdf.blade.php
+++ b/resources/views/receiptpdf.blade.php
@@ -108,21 +108,19 @@
- @foreach($checkout_final_results as $checkout_final_result)
- @if($checkout_final_result->payment_method==1)
+ @if($checkout_final_results->payment_method==1)
CASH
- @elseif($checkout_final_result->payment_method==2)
+ @elseif($checkout_final_results->payment_method==2)
- CHECK Number {{ $checkout_final_result->check_number }}
+ CHECK Number {{ $checkout_final_results->check_number }}
@else
- CREDIT {{ $checkout_final_result->cc_transaction }}
+ CREDIT {{ $checkout_final_results->cc_transaction }}
@endif
- @endforeach
|