1234567891011121314151617 |
- <?php
- namespace App\Exports;
- use App\Report;
- use Maatwebsite\Excel\Concerns\FromCollection;
- class ReportExport implements FromCollection
- {
- /**
- * @return \Illuminate\Support\Collection
- */
- public function collection()
- {
- return Report::all();
- }
- }
|