LoketPengaduanImport.php 356 B

12345678910111213141516171819
  1. <?php
  2. namespace App\Imports;
  3. use Illuminate\Support\Collection;
  4. use Maatwebsite\Excel\Concerns\ToCollection;
  5. use Maatwebsite\Excel\Concerns\Importable;
  6. class LoketPengaduanImport implements ToCollection
  7. {
  8. use Importable;
  9. /**
  10. * @param Collection $collection
  11. */
  12. public function collection(Collection $collection)
  13. {
  14. //
  15. }
  16. }