我在一个函数中有三个变量articles、users和matches。我希望能够在调用该函数时列出这三个变量的所有内容。目前,当我 dd() 任何变量时,我都会获取内容,但我希望在调用函数时从所有三个变量获取内容。任何帮助表示赞赏。这是我的代码。
网页.php
Route::get('/dashboard', 'DashboardController@index')->name('dashboard.index');
DashboardController.php
public function getAll()
{
$articles = Article::get();
$users = User::get();
$matches = Match::get();
}
GCT1015