owladmin 自定义导出拼接
xuexi 2026-04-15 19:45:13 发表在:PHP 查看数:139
composer require rap2hpoutre/fast-excel
 $this->exportAction(), 


 protected function exportMap($row)
{
    $data = $row instanceof \Illuminate\Database\Eloquent\Model ? $row->toArray() : (array) $row;

    return [
        'ID' => data_get($data, 'id'),
        '分类名称' => data_get($data, 'name'),
        '备注' => 'http://www.baidu.com/?code='.data_get($data, 'beizhu'),
        '创建时间' => date('Y-m-d H:i:s', strtotime((string) data_get($data, 'created_at'))),
    ];
}

例如

    ->headerToolbar([
            $this->createButton('dialog'),
                  // 添加导出按钮
                $this->exportAction(), 
                ...$this->baseHeaderToolBar()
            ])
最近访问时间:2026-05-16 18:09:03
知识库:456条鸣谢:TAY  备案号:蜀ICP备2024090044号