Skip to content

Commit

Permalink
Merge pull request #4226 from HDInnovations/Bug-4220
Browse files Browse the repository at this point in the history
(Fix) Bug #4220
  • Loading branch information
HDVinnie authored Oct 14, 2024
2 parents 4db0234 + fad5138 commit d51180f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions resources/views/Staff/donation_package/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ class="panel__action form__button form__button--text"
</td>
<td>$ {{ $package->cost }}</td>
<td>
{{ App\Helpers\StringHelper::formatBytes($package->upload_value) }}
{{ App\Helpers\StringHelper::formatBytes($package->upload_value ?? 0) }}
</td>
<td>{{ $package->invite_value }}</td>
<td>{{ $package->bonus_value }}</td>
<td>{{ $package->invite_value ?? 0 }}</td>
<td>{{ $package->bonus_value ?? 0 }}</td>
<td>
@if ($package->donor_value === null)
Lifetime
Expand Down

0 comments on commit d51180f

Please sign in to comment.