problem with exel uploader

I have form like this image is. I'm using EightyNine ExcelImport framework to import exel file. this is pivot table like i have holding company table and pivot table for this holding company dircetors, one holding company may have many directors with active statuses, i want to write all this in my exel file and next import it. my code at this moment looks like that
 \EightyNine\ExcelImport\ExcelImportAction::make()
            ->label('ექსელის ატვირთვა')
            ->sampleExcel(
                sampleData: [
                    ['internal_company_name', 'identification_code', 'holding_company_id', 'director_id', 'is_active'],
                ],
                fileName: 'holding_companies_example.xlsx',
                sampleButtonLabel: 'გადმოიწერე_მაგალითი',
                customiseActionUsing: fn(Action $action) => $action->color('primary')
                    ->icon('heroicon-m-clipboard')
                    ->requiresConfirmation(),
            )
            ->color('danger'),
its only adding internal_company_name and indefinitcation_code at this moment
image.png
Was this page helpful?