未定义的属性:Symfony \ Component \ HttpFoundation \ ParameterBag :: $ dated(使用maatwebsite导出excel)

时间:2019-07-02 04:05:41

标签: laravel api vue.js maatwebsite-excel

我遇到错误,我不知道这是什么错误

在我的控制器中

 public function exportExcel(Request $data)
    {
        return Excel::download(new VgetAttGeneralExport($data), 'rekap-perkelas.xlsx');
    }

这是我的请求

0:{keyid: 6046, att_seq: 6046, att_enumber: "101415287", att_method: null, att_workcode: null,…}

在我的导出文件夹中

namespace App\Exports;

use Illuminate\Contracts\View\View;
use Maatwebsite\Excel\Concerns\FromView;
use Maatwebsite\Excel\Concerns\Exportable;

class VgetAttGeneralExport implements FromView
{
    use Exportable;


    public $data;
    /**
    * @return \Illuminate\Support\Collection
    */
     public function __construct($data) {
        $this->data = $data;
    }

    public function view(): View
    {
        $data = $this->data;

        return view('exports.Kehadiran',compact('data'));
    }
}

这就是我的观点

 <table>
        <tbody>
            @foreach($data as $item)
                <tr>
                    <td>{{ $loop->iteration }}</td>
                    <td>{{ $item->dated }}</td>
                    <td>{{ $item->employee_id }}</td>
                    <td>{{ $item->employee_name }}</td>
                    <td>{{ $item->tingkat }}{{$item->div_name}}{{$item->kelas}}</td>
                    <td>{{ $item->stat_name }}</td>
                    <td>{{ $item->stat_desc }}</td>
                </tr>
            @endforeach
        </tbody>
    </table>

我尝试了很多方法,但遇到了困难,任何人都可以帮助我,我是api laravel的初学者。

0 个答案:

没有答案