Excel Import modal

How do I create a action or link so that user can read about upload Csv file instruction.
No description
3 Replies
LeandroFerreira
LeandroFerreira2mo ago
You could customize the ->modalContent() I think
Sourabh
Sourabh2mo ago
okay I check it .
lazydog
lazydog2mo ago
If your concern is just an instruction, in you import class, you can override this
public static function getOptionsFormComponents(): array
{
return [
Placeholder::make('')
->label('your instruction'),
];
}
public static function getOptionsFormComponents(): array
{
return [
Placeholder::make('')
->label('your instruction'),
];
}