proficlos/format

Formatter

Installs: 13 151

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/proficlos/format

v1.1.2 2023-08-25 04:54 UTC

This package is auto-updated.

Last update: 2025-09-25 09:41:29 UTC


README

$ composer require proficlos/format

Static filter usage

use ProfiCloS\Format;

echo Format::currency(1206.45, Format::CURRENCY_USD);
// ... etc

Latte filters

Register in your neon config

services:
	filters: ProfiCloS\LatteFilterService
	nette.latteFactory:
		setup:
			- addFilter(format, [ @filters, format ])	

Then you can use all formatters in latte

{$price|format:currency}

{$quantity|format:number}