21 lines
332 B
PHP
21 lines
332 B
PHP
<?php
|
|
|
|
namespace App\Imports;
|
|
|
|
use Maatwebsite\Excel\Concerns\ToArray;
|
|
|
|
class RefundAmountImport implements ToArray
|
|
{
|
|
protected $data;
|
|
|
|
// public function __construct(array $data)
|
|
// {
|
|
// $this->data = $data;
|
|
// }
|
|
|
|
public function array(array $array)
|
|
{
|
|
// TODO: Implement array() method.
|
|
}
|
|
}
|