whoami7 - Manager
:
/
home
/
qbizpnmr
/
test.qbiztax.com
/
app
/
Abstracts
/
Upload File:
files >> //home/qbizpnmr/test.qbiztax.com/app/Abstracts/ImportMultipleSheets.php
<?php namespace App\Abstracts; use Illuminate\Contracts\Queue\ShouldQueue; use Maatwebsite\Excel\Concerns\Importable; use Maatwebsite\Excel\Concerns\WithChunkReading; use Maatwebsite\Excel\Concerns\SkipsUnknownSheets; use Maatwebsite\Excel\Concerns\WithMultipleSheets; abstract class ImportMultipleSheets implements ShouldQueue, WithChunkReading, WithMultipleSheets, SkipsUnknownSheets { use Importable; public $user; public function __construct() { $this->user = user(); } public function chunkSize(): int { return config('excel.imports.chunk_size'); } public function onUnknownSheet($sheetName) { // } }
Copyright ©2021 || Defacer Indonesia