MOD make database migration laravel 12 compatible part2

This commit is contained in:
E98Developer 2026-04-08 19:32:50 +02:00
parent e49c64a4df
commit 6fc5a7374a

View File

@ -50,6 +50,12 @@ public function register(): void
*/
public function boot(): void
{
\Illuminate\Database\Schema\Blueprint::macro('userIdFields', function () {
$this->unsignedInteger('created_by')->nullable();
$this->unsignedInteger('updated_by')->nullable();
$this->unsignedInteger('deleted_by')->nullable();
});
\Livewire\Livewire::component('app.filament.pages.price-list-processor', \App\Filament\Pages\PriceListProcessor::class);
/*
\Livewire\Livewire::component('filament.livewire.notifications', \Filament\Livewire\Notifications::class);