Skip to content

Commit c33969a

Browse files
committed
pint
1 parent 01586cf commit c33969a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

resources/lang/en/invoice.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,6 @@
4040
'credit' => 'Credit note',
4141
'proforma' => 'Proforma invoice',
4242
],
43-
43+
4444
'page' => 'Page',
4545
];

workbench/routes/web.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,14 +186,14 @@
186186
new PaymentInstruction(
187187
name: 'Bank Transfer',
188188
description: 'Make a direct bank transfer using the details below',
189-
qrcode: "data:image/png;base64,". base64_encode(file_get_contents(__DIR__ . "/../resources/images/qrcode.png")),
189+
qrcode: 'data:image/png;base64,'.base64_encode(file_get_contents(__DIR__.'/../resources/images/qrcode.png')),
190190
fields: [
191191
'Bank Name' => 'Acme Bank',
192192
'Account Number' => '12345678',
193193
'IBAN' => 'GB12ACME12345678123456',
194194
'SWIFT/BIC' => 'ACMEGB2L',
195195
'Reference' => 'INV-0032/001',
196-
'<a href="#">Pay online</a>'
196+
'<a href="#">Pay online</a>',
197197
],
198198
),
199199
]

0 commit comments

Comments
 (0)