
* change layout * change layout * #22 - wip * wip * wip * #22 - wip * #22 - wip * #22 - wip * #22 - wip * #22 - fix * #22 - wip * #22 - added some tests * #22 - wip * #22 - wip * #22 - fix * #41 - wip * #22 - wip * #22 - wip * #22 - wip * #22 - fix * #22 - fix * #22 - fix * #22 - fix * #22 - fix * #22 - fix * #41 - wip * #41 - wip * #49 - laravel 9 * #41 - wip * #41 - fix * #41 - fix * Apply suggestions from code review Co-authored-by: Jacek Sawoszczuk <jacek.sawoszczuk@gmail.com> * #41 - cr fix * #41 - cr fix Co-authored-by: Adrian Hopek <adrian.hopek@blumilk.pl> Co-authored-by: Jacek Sawoszczuk <jacek.sawoszczuk@gmail.com>
26 lines
744 B
PHP
26 lines
744 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Toby\Architecture\Providers;
|
|
|
|
use Illuminate\Support\Carbon;
|
|
use Illuminate\Support\ServiceProvider;
|
|
use Toby\Eloquent\Models\Holiday;
|
|
use Toby\Eloquent\Models\VacationLimit;
|
|
use Toby\Eloquent\Scopes\SelectedYearPeriodScope;
|
|
|
|
class AppServiceProvider extends ServiceProvider
|
|
{
|
|
public function boot(): void
|
|
{
|
|
Carbon::macro("toDisplayString", fn() => $this->translatedFormat("j F Y"));
|
|
Carbon::macro("toDisplayDate", fn() => $this->translatedFormat("d.m.Y"));
|
|
|
|
$selectedYearPeriodScope = $this->app->make(SelectedYearPeriodScope::class);
|
|
|
|
VacationLimit::addGlobalScope($selectedYearPeriodScope);
|
|
Holiday::addGlobalScope($selectedYearPeriodScope);
|
|
}
|
|
}
|