Skip to content

Commit

Permalink
Fix discount description
Browse files Browse the repository at this point in the history
  • Loading branch information
blackshadev committed Oct 29, 2023
1 parent aae9a0c commit 4d229ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/Models/Participant.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ class Participant extends Model
{
public const INCOME_DESCRIPTION_TABLE = [
0 => 'Meer dan € 3400 (geen korting)',
1 => 'Tussen € 2400 en € 3400 (korting: 25%)',
1 => 'Tussen € 2400 en € 3400 (korting: 20%)',
2 => 'Tussen € 1600 en € 2400 (korting: 40%)',
3 => 'Minder dan € 1600 (korting: 60%)',
3 => 'Minder dan € 1600 (korting: 100%)',
];

public const INCOME_DISCOUNT_TABLE = [
Expand Down

0 comments on commit 4d229ce

Please sign in to comment.