Ingen beskrivning
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

import.collection.stub 289B

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