| 12345678910111213141516171819 |
- <?php
- namespace App\Imports;
- use Illuminate\Support\Collection;
- use Maatwebsite\Excel\Concerns\ToCollection;
- use Maatwebsite\Excel\Concerns\Importable;
- class RencanaSosialisasiImport implements ToCollection
- {
- use Importable;
- /**
- * @param Collection $collection
- */
- public function collection(Collection $collection)
- {
- //
- }
- }
|