ErrorException未定义的偏移量:0在laravel excel导出文件上使用Helper函数。
当我添加时显示值(Helper::getChallanData($purchaseLedger-〉bill_id)[0]-〉challan_no)。但是当我试图在Excel中显示时,它显示错误。
if (count(Helper::getChallanData($purchaseLedger->bill_id)) > 1)
{
$excel_dynamic_data_values[$index][] =Helper::getChallanData($purchaseLedger->bill_id)[$g]->challan_no;
}else{
$excel_dynamic_data_values[$index][] = Helper::getChallanData($purchaseLedger->bill_id)[0]->challan_no;
}
1条答案
按热度按时间mkshixfv1#
我只是在Helper函数前面添加了“@”。