21 lines
No EOL
387 B
PHP
21 lines
No EOL
387 B
PHP
<?php
|
|
|
|
namespace App\Imports;
|
|
|
|
use App\Models\Shipping;
|
|
use Maatwebsite\Excel\Concerns\ToModel;
|
|
use Maatwebsite\Excel\Concerns\WithHeadingRow;
|
|
use Illuminate\Support\Collection;
|
|
use Maatwebsite\Excel\Concerns\ToCollection;
|
|
|
|
|
|
class ImportCollection implements ToCollection, WithHeadingRow //ToModel
|
|
{
|
|
|
|
|
|
public function collection(Collection $rows)
|
|
{
|
|
return $rows;
|
|
|
|
}
|
|
} |