gpt4 book ai didi

php - Laravel Maatwebsite excel数组

转载 作者:行者123 更新时间:2023-12-01 13:25:51 27 4
gpt4 key购买 nike

我是 Laravel 的新手,但我正在使用 Laravel 的 Maatwebsite\Excel Library v3 导出 excel。但是我在导出数组数据时遇到了一些问题。

这是我的代码

    <?php

namespace App\Exports;
use App\Team;

use Maatwebsite\Excel\Concerns\FromCollection;
use Maatwebsite\Excel\Concerns\Exportable;
use Maatwebsite\Excel\Concerns\WithHeadings;

class RegisteredMemberExport implements FromCollection, WithHeadings
{
use Exportable;

public function collection()
{

$data = Team::where('reg', 1)->get();

return collect([
[
'name' => $data->name,
'email' => $data->email
]
]);
}

public function headings(): array
{
return [
'name',
'email'
];
}

}

收集应该是

return collect
([
[
'name' => 'Povilas',
'email' => 'povilas@laraveldaily.com'
],
[
'name' => 'Taylor',
'email' => 'taylor@laravel.com'
]
]);

我不能在收集方法返回中使用循环。我可以帮忙吗?

最佳答案

您可以使用属性列表作为 get 方法的参数,直接从 Eloquent 模型中过滤您需要的值。

$data = Team::where('reg', 1)->get(['name', 'email']);

return collect($data->toArray());

关于php - Laravel Maatwebsite excel数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52458286/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com