Export Excel with cell hyperlink
I am using Maatwebsite for exporting my data as an excel file. It is working well.
public function map($user): array
{
return [
$user->first_name , $user->last_name , $user->website
];
}
I want to make "website" cell as a link for user website address.
I appreciate your help
Any idea to help? or if it is not clear let me explain more:
In the Excel file I would like to have something like this:
First Name Last Name Website
x y google.com <------ When export this cell has a hyperlink with (google.com) address.
Please or to participate in this conversation.