GizaRex
GizaRex
FFilament
Created by GizaRex on 10/29/2024 in #❓┊help
Livewire encountered a missing root tag when trying to render a component. On widget
Yeah, exact the same problem
7 replies
FFilament
Created by GizaRex on 10/29/2024 in #❓┊help
Livewire encountered a missing root tag when trying to render a component. On widget
Going to try the filament:optimize in my deployment script
7 replies
FFilament
Created by GizaRex on 4/22/2024 in #❓┊help
Test editOptionForm
When I use 'record' => $recipe then I get an ModelNotFoundException
6 replies
FFilament
Created by GizaRex on 4/22/2024 in #❓┊help
Test editOptionForm
No still no solution for this.
6 replies
FFilament
Created by GizaRex on 4/11/2024 in #❓┊help
TranslatableContainer in Repeater
Fixed it. Composer did not installed the lates updated version for the package mvenghaus/filament-plugin-translatable-inline": "3.0" when I used composer require mvenghaus/filament-plugin-translatable-inline:"^3.0" it just installed version 3.0
5 replies
FFilament
Created by GizaRex on 4/11/2024 in #❓┊help
TranslatableContainer in Repeater
So i tried to debug it like this
Repeater::make('recipes_steps')
->label('')
->relationship('steps')
->schema([
TranslatableContainer::make(
TextInput::make('description')
->afterStateHydrated(fn (string $state) => dd($state))
),
]),
Repeater::make('recipes_steps')
->label('')
->relationship('steps')
->schema([
TranslatableContainer::make(
TextInput::make('description')
->afterStateHydrated(fn (string $state) => dd($state))
),
]),
So i used dd() and I get the right value that I was expecting. But still I get this error => Typed property Filament\Forms\Components\Component::$container must not be accessed before initialization
5 replies