diff --git a/resources/views/pages/pdfs/company_account_statement_transaction.blade.php b/resources/views/pages/pdfs/company_account_statement_transaction.blade.php
index 28c8e792..4b3bd789 100644
--- a/resources/views/pages/pdfs/company_account_statement_transaction.blade.php
+++ b/resources/views/pages/pdfs/company_account_statement_transaction.blade.php
@@ -82,7 +82,7 @@
$marking = $transaction->owner->marking;
} else {
$description = "Payment
" . $transaction->bill_no;
- $marking = App\Models\Transaction::where('payment_reference', $transaction->bill_no)->first()->owner->marking;
+ $marking = \App\Models\Transaction::where('payment_reference', $transaction->bill_no)->first()->owner->marking;
}
$outgoing = number_format($transaction->amount, $roundOff);
break;
@@ -103,7 +103,7 @@
$current_running_balance = floatval($current_running_balance) + floatval($incoming) - floatval($outgoing);
$current_running_balance = number_format($current_running_balance, $roundOff);
-
+
@endphp