toby/app/Architecture/Providers/AppServiceProvider.php
Adrian Hopek b11e60ab74 #62 - fix
2022-03-07 15:16:53 +01:00

17 lines
327 B
PHP

<?php
declare(strict_types=1);
namespace Toby\Architecture\Providers;
use Illuminate\Support\Carbon;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
public function boot(): void
{
Carbon::macro("toDisplayString", fn() => $this->translatedFormat("d.m.Y"));
}
}