
* - directory refactor * - readme.md update * Update readme.md Co-authored-by: Adrian Hopek <adrian.hopek@blumilk.pl> * Update readme.md Co-authored-by: Ewelina Lasowy <56546832+EwelinaLasowy@users.noreply.github.com> * Update readme.md Co-authored-by: Ewelina Lasowy <56546832+EwelinaLasowy@users.noreply.github.com> * Update readme.md Co-authored-by: Ewelina Lasowy <56546832+EwelinaLasowy@users.noreply.github.com> * Update readme.md Co-authored-by: Adrian Hopek <adrian.hopek@blumilk.pl> Co-authored-by: Ewelina Lasowy <56546832+EwelinaLasowy@users.noreply.github.com>
25 lines
662 B
PHP
25 lines
662 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"));
|
|
|
|
$selectedYearPeriodScope = $this->app->make(SelectedYearPeriodScope::class);
|
|
|
|
VacationLimit::addGlobalScope($selectedYearPeriodScope);
|
|
Holiday::addGlobalScope($selectedYearPeriodScope);
|
|
}
|
|
}
|