Maatwebsite Excel "From View" 代码需要解释
Need explanation on Maatwebsite Excel "From View" code
在研究如何使用集合 + HTML 视图将 table 列表数据导入 excel 文件时,我遇到了 maatwebsite/excel package. I managed to import the excel by following the documentation. However, I am not familiar with the code syntax used by the author. On this link,作者定义了一个函数 view() 如下面的代码所示:
public function view(): View
{
return view('exports.invoices', [
'invoices' => Invoice::all()
]);
}
我不熟悉 view(): View 语法。有人可以指导我为此找到适当的文档吗?并告诉我如何在 Netbeans 中解决这个问题(见下面的截图)?
Screenshot of Netbeans error
请记住,代码本身运行正常,没有任何问题。我可以根据自己的要求下载 excel 文件。
使用:Laravel 5.6、PHP 7.1.17、NetBeans 8.0.2、maatwebsite/excel 3.0
如有任何相关信息,我们将不胜感激。提前致谢。
在 PHP 7.0 及更高版本中,我们可以定义 return 类型。例如。
function sum(): int {
// function body.
}
同样适用于:
public function view(): View
这一行表示函数 view() 仅 return 视图 class 对象。
在研究如何使用集合 + HTML 视图将 table 列表数据导入 excel 文件时,我遇到了 maatwebsite/excel package. I managed to import the excel by following the documentation. However, I am not familiar with the code syntax used by the author. On this link,作者定义了一个函数 view() 如下面的代码所示:
public function view(): View
{
return view('exports.invoices', [
'invoices' => Invoice::all()
]);
}
我不熟悉 view(): View 语法。有人可以指导我为此找到适当的文档吗?并告诉我如何在 Netbeans 中解决这个问题(见下面的截图)? Screenshot of Netbeans error
请记住,代码本身运行正常,没有任何问题。我可以根据自己的要求下载 excel 文件。
使用:Laravel 5.6、PHP 7.1.17、NetBeans 8.0.2、maatwebsite/excel 3.0
如有任何相关信息,我们将不胜感激。提前致谢。
在 PHP 7.0 及更高版本中,我们可以定义 return 类型。例如。
function sum(): int {
// function body.
}
同样适用于:
public function view(): View
这一行表示函数 view() 仅 return 视图 class 对象。