mirror of
https://github.com/openclassify/openclassify.git
synced 2026-01-11 18:01:10 -06:00
20 lines
382 B
PHP
20 lines
382 B
PHP
<?php
|
|
namespace Visiosoft\AdvsModule\Adv;
|
|
|
|
|
|
use Illuminate\Support\Str;
|
|
use Maatwebsite\Excel\Concerns\ToModel;
|
|
|
|
class AdvsImport implements ToModel
|
|
{
|
|
public function model(array $row)
|
|
{
|
|
return new AdvModel([
|
|
'name' => $row[0],
|
|
'slug' => Str::slug($row[0]),
|
|
'price' => $row[1],
|
|
'currency' => $row[2],
|
|
]);
|
|
}
|
|
}
|