我正在尝试使用以下electnt编辑我的数据字段,但它没有获取数据,任何帮助表示赞赏。
以下是我正在使用的数据控制器:
public function edit($name)
{
$category = category::where('name', $name)->get()->all();
dd($category);
return view('/editcategory')->with('category', $category);
}
在检查输出时它没有从数据库中获取数据 输出:
array:1 [▼
0 => category {#190 ▼
#table: "category"
#connection: null
#primaryKey: "id"
#perPage: 15
+incrementing: true
+timestamps: true
#attributes: array:5 [▶]
#original: array:5 [▶]
#relations: []
#hidden: []
#visible: []
#appends: []
#fillable: []
#guarded: array:1 [▶]
#dates: []
#dateFormat: null
#casts: []
#touches: []
#observables: []
#with: []
#morphClass: null
+exists: true
}
]
答案 0 :(得分:0)
请勿同时使用get()
和all()
。
它应该是:
public function edit($name)
{
$category = category::where('name', $name)->all();
[...]
}