我试图从我的模型中获取一个对象的值。它只返回我不想要的属性,因为它与我表中的内容不对应。 我想访问原始数组。
我做了:
$entries = Model::where('A', $A)->where('B', $B)->get();
@Foreach ($entries as $entry)
$entry->id
$entry->name
@Endforeach
我尝试添加->original
,但它不起作用。
这部分是我var_dump($entries)
(
[items:protected] => Array
(
[0] => App\Models\TableA Object
(
[table:protected] => Table A
[primaryKey] => id
[connection:protected] =>
[perPage:protected] => 15
[incrementing] => 1
[timestamps] => 1
[attributes:protected] => Array
(
[id] => 1
[name] => 2
)
[original:protected] => Array
(
[id] => 1
[name] => 1
)
答案 0 :(得分:16)
答案 1 :(得分:0)
对于laravel 4.2和
$entries->toArray()
仅提供模型属性。