MyHomeCollection/app/Providers/AppServiceProvider.php

33 lines
572 B
PHP
Raw Normal View History

2020-07-23 12:26:10 +02:00
<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
2020-07-24 11:06:49 +02:00
use Illuminate\Support\Str;
2020-07-23 12:26:10 +02:00
class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*
* @return void
*/
public function register()
{
//
}
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
2020-07-24 11:06:49 +02:00
Str::macro('currency', static function ($price)
{
return sprintf('%s €', number_format($price, 0, ',', ' '));
});
2020-07-23 12:26:10 +02:00
}
}