Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
eugenefvdm committed Oct 4, 2022
1 parent 59259d8 commit c581e0d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to `payfast-onsite-subscriptions` will be documented in this file.

## v1.1.3 - 2022-10-04

- Bugfix in receipts blade allow for null on PayFast field billing_date

## v1.1.2 - 2022-10-04

- Release
Expand Down
2 changes: 1 addition & 1 deletion resources/views/components/receipts.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<td>{{ $receipt->item_name }}</td>
<td style="text-align:right">R {{ $receipt->amount_gross }}</td>
<td style="padding-left:10px">{{ $receipt->payment_status }}</td>
<td nowrap>{{ $receipt->billing_date->format('Y-m-d') }}</td>
<td nowrap>{{ $receipt->billing_date->format('Y-m-d') ?? 'n/a'}}</td>
</tr>
@endforeach
</tbody>
Expand Down

0 comments on commit c581e0d

Please sign in to comment.