Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more

NAME

Finance::Salary::Rate - Calculate hourly rates for small businesses

VERSION

version 0.001

SYNOPSIS

my $rate = Finance::Salary::Rate->new(
monthly_income => 1750,
vacation_perc => 8,
tax_perc => 30,
healthcare_perc => 5.7,
declarable_days_perc => 60,
days => 230,
expenses => 2000,
);
print "My hourly rate is " . $rate->hourly_rate;

DESCRIPTION

A calculator to calculate hourly rates for small businesses and the likes. Based on the Dutch Ondernemersplein method.

ATTRIBUTES

income

The monthly income you want to receive. Required.

vacation_perc

The percentage of what you want to pay yourself for vacation money. Optional.

tax_perc

The percentage of taxes you need to set aside for the government. Optional.

healthcare_perc

The percentage of income you need to set aside for health care insureance. Optional.

healthcare_perc

The percentage of income you need to set aside for health care insureance. Optional.

declarable_days_perc

The percentage of declarable days per week. Optional and defaults to 60%.

working_days

The total amount of working days in a year. Optional and defaults to 230.

expenses

Estimated expenses per year. Optional.

METHODS

monthly_income

Returns the montly income

yearly_income

Returns the yearly income

weekly_income

Returns the weekly income

AUTHOR

Wesley Schwengle <waterkip@cpan.org>

COPYRIGHT AND LICENSE

This software is Copyright (c) 2019 by Wesley Schwengle.

This is free software, licensed under:

The (three-clause) BSD License