gpt4 book ai didi

php - 我的实例没有为我获取我想要的表

转载 作者:行者123 更新时间:2023-11-29 02:41:35 26 4
gpt4 key购买 nike

所以我试图附加一个包含来自 MYSQL 数据库的信息的对象,但结果不是我所期望的。

Controller -

public function index()
{
$location = Location::orderBy('created_at', 'desc');
return view('location')->with('locations', $location);
}

模型 -

class Location extends Model
{
// Primary Key
public $primaryKey = 'id';
// Timestamps
public $timestamps = true;
}

结果-

  Builder {#486 ▼
#query: Builder {#485 ▶}
#model: Location {#484 ▶}
#eagerLoad: []
#localMacros: []
#onDelete: null
#passthru: array:12 [▶]
#scopes: []
#removedScopes: []
}

最佳答案

改变这个

$location = Location::orderBy('created_at', 'desc');

$location = Location::orderBy('created_at', 'desc')->get();

关于php - 我的实例没有为我获取我想要的表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50776167/

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