Here's an example on exporting your data from a bulk action using Laravel Excel:
1use App\Exports\UsersExport;
2use Maatwebsite\Excel\Facades\Excel;
3
4public function bulkActions(): array
5{
6 return [
7 'export' => 'Export',
8 ];
9}
10
11public function export()
12{
13 $users = $this->getSelected();
14
15 $this->clearSelected();
16
17 return Excel::download(new UsersExport($users), 'users.xlsx');
18}
The UsersExport class is a simple example of how to export data from a bulk action:
1<?php
2
3namespace App\Exports;
4
5use App\Models\User;
6use Maatwebsite\Excel\Concerns\FromCollection;
7
8class UsersExport implements FromCollection
9{
10 public $users;
11
12 public function __construct($users) {
13 $this->users = $users;
14 }
15
16 public function collection()
17 {
18 return User::whereIn('id', $this->users)->get();
19 }
20}