Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

vandan's avatar
Level 13

How to Selected Data Export in laravel

selected column export

UsersExport.php

class UsersExport implements FromCollection, WithMapping

{

public function collection()

{       
    
    return User::all();

}

}

ExcelControlller.php

public function export()

{

return Excel::download(new UsersExport, 'Sales Return2019 (Cr.xlsx');

}

0 likes
0 replies

Please or to participate in this conversation.