We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28c44ce commit 8fb2e50Copy full SHA for 8fb2e50
README.md
@@ -226,7 +226,7 @@ $invoice = new Invoice([
226
'street' => '8405 Old James St.Rochester',
227
'city' => 'New York',
228
'postal_code' => '14609',
229
- 'state' => 'New York (NY)',
+ 'state' => 'NY',
230
'country' => 'United States',
231
],
232
'email' => '[email protected]',
@@ -487,10 +487,13 @@ $pdfInvoice = new PdfInvoice(
487
buyer: new Buyer(
488
name: 'John Doe',
489
address: new Address(
490
- street: '8405 Old James St.Rochester',
+ street: [
491
+ '8405 Old James St.Rochester'
492
+ 'Apartment 1',
493
+ ],
494
city: 'New York',
495
postal_code: '14609',
- state: 'New York (NY)',
496
+ state: 'NY',
497
country: 'United States',
498
),
499
email: '[email protected]',
0 commit comments