Huberson Kouakou
Huberson Kouakou
FFilament
Created by Huberson Kouakou on 4/2/2025 in #❓┊help
Repeater in a Custom Page Not Loading HasMany Relationship Data
Yes, it's indeed 'subscribedParts', I made a mistake.
13 replies
FFilament
Created by Huberson Kouakou on 4/2/2025 in #❓┊help
Repeater in a Custom Page Not Loading HasMany Relationship Data
The relationship name is "partsSubscribed"
13 replies
FFilament
Created by Huberson Kouakou on 4/2/2025 in #❓┊help
Repeater in a Custom Page Not Loading HasMany Relationship Data
When I remove form->fill, the repeater no longer displays the fields. When I add it, the fields are displayed but empty.
13 replies
FFilament
Created by Huberson Kouakou on 4/2/2025 in #❓┊help
Repeater in a Custom Page Not Loading HasMany Relationship Data
I added $this->form->fill($this->record->toArray()); in the mount method, but the repeater still doesn't load the data.
13 replies
FFilament
Created by Huberson Kouakou on 4/2/2025 in #❓┊help
Repeater in a Custom Page Not Loading HasMany Relationship Data
use Filament\Forms\Components\Repeater; use Filament\Forms\Components\Section; use Filament\Forms\Components\TextInput; use Filament\Resources\Pages\Concerns\InteractsWithRecord; use Filament\Resources\Pages\Page; use App\Models\Offer; class ShowOfferDetails extends Page { protected static string $resource = OfferResource::class; protected static string $view = 'filament.resources.offer-resource.pages.show-offer-details'; use InteractsWithRecord; public function mount(int | string $record): void { $this->record = $this->resolveRecord($record)->load('partsSubscribed'); $this->form->fill(); } public function getFormModel(): Offer { return $this->record; } protected function getFormSchema(): array { return [ Section::make([ Section::make('Réassurance') ->schema([ Repeater::make('subscribedParts') ->relationship('subscribedParts') ->schema([ Placeholder::make('') ->label('Société de réassurance') ->content($this->record->name),
TextInput::make('contact_email') ->label('Contact email') ->email() ->required(), ]) ->addable(false) ->deletable(false) ->reorderable(false) ]) ->collapsed() ->columnSpanFull() ])->columns(4), ]; } }
13 replies