23 lines
436 B
PHP
23 lines
436 B
PHP
<?php
|
|
|
|
namespace App\Admin\Exporters;
|
|
|
|
use Encore\Admin\Grid\Exporters\ExcelExporter;
|
|
use Maatwebsite\Excel\Concerns\WithMapping;
|
|
|
|
class ProvinceExporter extends ExcelExporter implements WithMapping
|
|
{
|
|
protected $fileName = '省市管理.xlsx';
|
|
|
|
protected $columns = [
|
|
'shortname' => '省市区名称',
|
|
];
|
|
|
|
public function map($area): array
|
|
{
|
|
return [
|
|
$area->shortname,
|
|
];
|
|
}
|
|
}
|