| 1234567891011121314151617 |
- <?php
- namespace App\Imports;
- use Maatwebsite\Excel\Concerns\WithMultipleSheets;
- class StoreCheckingReceiveSheets implements WithMultipleSheets
- {
- public function sheets(): array
- {
- // TODO: Implement sheets() method.
- return [
- 0 => new StoreCheckingReceiveImport(),
- ];
- }
- }
|