我试图从我从模型之一获得的对象获得价值。它只返回我不想要的属性,因为它与我的表中的不对应。
我想访问原始数组。

我做了:

$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

                        )

最佳答案

检索Eloquent模型属性的原始值时,
可以使用getOriginal($key)


参考:


Laravel 4.2
Laravel 5.0

08-05 05:03