I want to have a little string converter (translator) helper method. For example, I want to pass my string from the controller and get the result, so I don't want to repeatedly write the same helper function into the controller.
So that I can maybe use it like:
$oldStr = '12 Mayıs 2014'; // which means 12 May in English
$englishStr = custom_date_translator($oldStr);
and it does it's thing on the helper method.
Is the Service Providers for this purpose? It'd be good to learn the right way to do it.