Import action column mapping layout
Is it possible to adjust the layout with columns() Grid ot other layout options of the mapping modal in the ImportAction?
5 Replies
yes
Thanks @Darshan_Bhandary can you elaborate how/where?
so you can use ImportAction::class and define your grid layout
->actions([
ImportAction::make('import')
->form([
Grid::make(2)->schema([
.... your fields...
]),
]),
]);
so a simple snippet
this is what i understood as per your doubt