설명 없음
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

export.model.stub 298B

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