ReportExport.php 279 B

1234567891011121314151617
  1. <?php
  2. namespace App\Exports;
  3. use App\Report;
  4. use Maatwebsite\Excel\Concerns\FromCollection;
  5. class ReportExport implements FromCollection
  6. {
  7. /**
  8. * @return \Illuminate\Support\Collection
  9. */
  10. public function collection()
  11. {
  12. return Report::all();
  13. }
  14. }