mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-19 04:24:00 +00:00
18 lines
260 B
PHP
Executable File
18 lines
260 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Classes\Excel\Import;
|
|
|
|
use Maatwebsite\Excel\Concerns\FromArray;
|
|
|
|
class CompaniesExport implements FromArray
|
|
{
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function array(): array
|
|
{
|
|
return [
|
|
//
|
|
];
|
|
}
|
|
} |