StoreCheckingReceiveSheets.php 320 B

1234567891011121314151617
  1. <?php
  2. namespace App\Imports;
  3. use Maatwebsite\Excel\Concerns\WithMultipleSheets;
  4. class StoreCheckingReceiveSheets implements WithMultipleSheets
  5. {
  6. public function sheets(): array
  7. {
  8. // TODO: Implement sheets() method.
  9. return [
  10. 0 => new StoreCheckingReceiveImport(),
  11. ];
  12. }
  13. }