Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
| UserExport | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2.00 | |
0.00% |
0 / 1 |
| collection | |
0.00% |
0 / 1 |
2.00 | |
0.00% |
0 / 1 |
|||
| <?php | |
| namespace App\Exports; | |
| use App\User; | |
| use Maatwebsite\Excel\Concerns\FromCollection; | |
| class UserExport implements FromCollection | |
| { | |
| /** | |
| * @return \Illuminate\Support\Collection | |
| */ | |
| public function collection() | |
| { | |
| return User::all(); | |
| } | |
| } |