mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-19 12:34:03 +00:00
8a28eb1790
This reverts merge request !5
20 lines
291 B
PHP
20 lines
291 B
PHP
<?php
|
|
|
|
namespace App\Classes\Excel\Import;
|
|
|
|
use Maatwebsite\Excel\Concerns\ToModel;
|
|
|
|
class CompaniesImport implements ToModel
|
|
{
|
|
/**
|
|
* @param array $row
|
|
*
|
|
* @return array
|
|
*/
|
|
public function model(array $row)
|
|
{
|
|
return [
|
|
//
|
|
];
|
|
}
|
|
} |