mirror of
https://gitlab.com/omair-personal/izyim.git
synced 2026-08-19 04:14:05 +00:00
20 lines
291 B
PHP
Executable File
20 lines
291 B
PHP
Executable File
<?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 [
|
|
//
|
|
];
|
|
}
|
|
} |