X7ROOT File Manager
Current Path:
/home/gfecatvj/sites/restate/vendor/maatwebsite/excel/src
home
/
gfecatvj
/
sites
/
restate
/
vendor
/
maatwebsite
/
excel
/
src
/
📁
..
📄
Cell.php
(2.18 KB)
📄
ChunkReader.php
(2.67 KB)
📁
Concerns
📁
Console
📄
DefaultValueBinder.php
(574 B)
📄
DelegatedMacroable.php
(730 B)
📁
Events
📄
Excel.php
(4.75 KB)
📄
ExcelServiceProvider.php
(2.8 KB)
📁
Exceptions
📄
Exporter.php
(1.51 KB)
📁
Facades
📁
Factories
📁
Fakes
📁
Files
📁
Filters
📄
HasEventBus.php
(1.25 KB)
📄
HeadingRowImport.php
(955 B)
📁
Helpers
📄
Importer.php
(1.53 KB)
📁
Imports
📁
Jobs
📄
MappedReader.php
(1.26 KB)
📁
Mixins
📄
QueuedWriter.php
(6.01 KB)
📄
Reader.php
(12.03 KB)
📄
RegistersCustomConcerns.php
(1.1 KB)
📄
Row.php
(1.82 KB)
📄
Sheet.php
(18.05 KB)
📁
Transactions
📁
Validators
📄
Writer.php
(4.95 KB)
Editing: Importer.php
<?php namespace Maatwebsite\Excel; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Foundation\Bus\PendingDispatch; use Illuminate\Support\Collection; use Symfony\Component\HttpFoundation\File\UploadedFile; interface Importer { /** * @param object $import * @param string|UploadedFile $filePath * @param string|null $disk * @param string|null $readerType * * @return Reader|PendingDispatch */ public function import($import, $filePath, string $disk = null, string $readerType = null); /** * @param object $import * @param string|UploadedFile $filePath * @param string|null $disk * @param string|null $readerType * * @return array */ public function toArray($import, $filePath, string $disk = null, string $readerType = null): array; /** * @param object $import * @param string|UploadedFile $filePath * @param string|null $disk * @param string|null $readerType * * @return Collection */ public function toCollection($import, $filePath, string $disk = null, string $readerType = null): Collection; /** * @param ShouldQueue $import * @param string|UploadedFile $filePath * @param string|null $disk * @param string $readerType * * @return PendingDispatch */ public function queueImport(ShouldQueue $import, $filePath, string $disk = null, string $readerType = null); }
Upload File
Create Folder