I am facing the following challenge with Laravel Excel, which I consider to be the best spreadsheet out there.
So, let's each row is a user
and would like to generate the headings for their hobbies
as such:
name
, hobby_1
, hobby_2
, hobby_3
Jim Smith, basketball, rowing, chess, programming
Issue is, how can I produce the headings as above provided that hobbies number may vary from user to user - that is, user John Majer
may have only hobby_1
=> skateboard
.
For now I am just printing the headings as follows:
public function headings(): array
{
return [
...
];
}
Any suggestions?