StatisticalExport.php 312 B

1234567891011121314151617
  1. <?php
  2. namespace App\Exports;
  3. use App\Models\User;
  4. use Maatwebsite\Excel\Concerns\FromCollection;
  5. class StatisticalExport implements FromCollection
  6. {
  7. //数组转集合
  8. public function collection()
  9. {
  10. return User::all();
  11. // return new Collection($this->createData());
  12. }
  13. }