47 lines
1.4 KiB
PHP
47 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
use Illuminate\Support\Facades\Blade;
|
|
use Illuminate\View\ComponentAttributeBag;
|
|
use Livewire\Livewire;
|
|
use Modules\Dashboard\DashboardFactory;
|
|
use Modules\Invoice\MemberPaymentBlock;
|
|
use Modules\Member\AgeGroupCountBlock;
|
|
use Modules\Member\TestersBlock;
|
|
use Modules\Prevention\EfzPendingBlock;
|
|
use Modules\Prevention\PsPendingBlock;
|
|
|
|
class LivewireServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Register services.
|
|
*/
|
|
public function register(): void
|
|
{
|
|
Blade::componentNamespace('App\\View\\Ui', 'ui');
|
|
Blade::componentNamespace('App\\View\\Page', 'page');
|
|
|
|
app(DashboardFactory::class)->register(AgeGroupCountBlock::class);
|
|
app(DashboardFactory::class)->register(MemberPaymentBlock::class);
|
|
app(DashboardFactory::class)->register(TestersBlock::class);
|
|
app(DashboardFactory::class)->register(EfzPendingBlock::class);
|
|
app(DashboardFactory::class)->register(PsPendingBlock::class);
|
|
|
|
ComponentAttributeBag::macro('mergeWhen', function ($condition, $key, $attributes) {
|
|
/** @var ComponentAttributeBag */
|
|
$self = $this;
|
|
return $condition ? $self->merge([$key => $attributes]) : $self;
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Bootstrap services.
|
|
*/
|
|
public function boot(): void
|
|
{
|
|
//
|
|
}
|
|
}
|