Skip to content
This repository has been archived by the owner on Feb 2, 2022. It is now read-only.

Commit

Permalink
Merge pull request #207 from crynobone/patch-1
Browse files Browse the repository at this point in the history
Fixes example not using proper closing tag
  • Loading branch information
sandervanhooft committed May 11, 2020
2 parents d77b15e + a8a734f commit b37e1e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ Route::middleware('auth')->get('/download-invoice/{orderId}', function($orderId)

return (request()->user()->downloadInvoice($orderId));
});

```

### Refunding Charges

Expand All @@ -505,7 +505,7 @@ __Use these with care:__

```php
$credit = $user->credit('EUR');
$user->addCredit(new Amount(10, 'EUR'); // add €10.00
$user->addCredit(new Amount(10, 'EUR')); // add €10.00
$user->hasCredit('EUR');
```

Expand Down

0 comments on commit b37e1e8

Please sign in to comment.