2021-02-14 12:52:00 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Exports\Settings;
|
|
|
|
|
|
|
|
use App\Abstracts\Export;
|
|
|
|
use App\Models\Setting\Category as Model;
|
|
|
|
|
|
|
|
class Categories extends Export
|
|
|
|
{
|
|
|
|
public function collection()
|
|
|
|
{
|
2021-06-27 11:40:46 +03:00
|
|
|
return Model::collectForExport($this->ids);
|
2021-02-14 12:52:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public function fields(): array
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'name',
|
|
|
|
'type',
|
|
|
|
'color',
|
|
|
|
'enabled',
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|