Skip to content

Instantly share code, notes, and snippets.

@menjaraz
Created June 8, 2014 17:42
Show Gist options
  • Save menjaraz/cde25503d3f00a93cecc to your computer and use it in GitHub Desktop.
Save menjaraz/cde25503d3f00a93cecc to your computer and use it in GitHub Desktop.
// blade extension for correct price formatting
// @money('15000');
Blade::extend(function($view, $compiler){
$pattern = '/@money\s?(\(.+?\)+)/is';
$replacement = "<?php echo (is_numeric(trim($1, '()')) ? number_format(trim($1, '()'), 0, '.', '\'') : trim($1, '()')); ?>";
return preg_replace($pattern, $replacement, $view);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment