Huberson Kouakou
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), ]; } }
TextInput::make('contact_email') ->label('Contact email') ->email() ->required(), ]) ->addable(false) ->deletable(false) ->reorderable(false) ]) ->collapsed() ->columnSpanFull() ])->columns(4), ]; } }
13 replies