The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Mojolicious::Plugin::Human

Helpers to print values as human readable form. You can use this module in Mojo template engine to make you users happy.

```perl

Enable and configure

$self->plugin('Human', {

    # Set money parameters if you need
    money_delim => ",",
    money_digit => " ",

    # Or change date and time strings
    datetime    => '%d.%m.%Y %H:%M',
    time        => '%H:%M:%S',
    date        => '%d.%m.%Y',
});

```

``` %# ... Somewhere in templates ...

<%= human_datetime $date_from_db %> ... <%= human_money $money %> ```

Date and time helpers

Money helpers

Phone helpers

Text helpers