| 1234567891011121314151617 |
- <?php
- namespace App\Imports;
- use Illuminate\Support\Collection;
- use Maatwebsite\Excel\Concerns\ToCollection;
- use Maatwebsite\Excel\Concerns\WithCalculatedFormulas;
- class ExamesImport implements ToCollection, WithCalculatedFormulas
- {
- public Collection $rows;
- public function collection(Collection $rows): void
- {
- $this->rows = $rows;
- }
- }
|