2017-08-17 120 views
0

我想通过Laravel中的嵌套对象进行循环并获取刀片文件的值。在Laravel循环嵌套对象

样本对象:

[ 
    { 
     "id": 43, 
     "user_id": 2, 
     "event": "updated", 
     "auditable_id": 34, 
     "auditable_type": "App\\Bill", 
     "old_values": { 
      "message": "test messgare", 
      "napprover": "24", 
      "status": "Added" 
     }, 
     "new_values": { 
      "message": "Second Audit", 
      "napprover": "10001", 
      "status": "Bill Processing" 
     }, 
     "url": "http://localhost:8000/admin/bills/34", 
     "ip_address": "127.0.0.1", 
     "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3186.0 Safari/537.36", 
     "created_at": "2017-08-16 18:44:12" 
    }, 
    { 
     "id": 41, 
     "user_id": 2, 
     "event": "created", 
     "auditable_id": 34, 
     "auditable_type": "App\\Bill", 
     "old_values": [], 
     "new_values": { 
      "bill_no": "2017081527", 
      "bill_type": "BILL", 
      "bill_date": "08/15/2017", 
      "vendor_id": "2563582", 
      "priority": "Moderate Priority", 
      "amount": "125245", 
      "message": "test messgare", 
      "initiator": "10001", 
      "napprover": "10003", 
      "tat": "1", 
      "status": "Added", 
      "department": "6", 
      "created_at": "2017-08-15 11:57:45" 
     }, 
     "url": "http://localhost:8000/admin/bills", 
     "ip_address": "127.0.0.1", 
     "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3185.0 Safari/537.36", 
     "created_at": "2017-08-15 11:57:45" 
    } 
] 

控制器:

public function show($id) 
{ 
    $bill = Bill::findOrFail($id); 
    $vendor = $bill->vendor_id; 
    $user = User::where('vendor_id', $vendor)->get(); 
    $all = $bill->audits()->get(); 
    return view('admin.BillDetail', compact('bill','user','all')); 
} 

刀片文件:

@foreach($all as $al) 
    @foreach($all as $a) 
    <li>{{$a}}</li> 
    @endforeach 
@endforeach 

我想访问old_values & new_values对象

如何循环

回答

1

得到这些值当我看到你的对象样本old_values & new_values是单一的对象不是对象的数组,这样你就可以做到这一点如下:

@foreach($all as $al) 
    @if(isset($al->new_values)) 
    <li>{{$al->new_values->message}}</li> 
    @endif 
@endforeach 

注意:如果存在null或空对象的可能性,那么在访问对象的任何属性之前,您需要添加一些检查,否则它会通过异常。

+0

谢谢,但没有奏效收到此错误 http://prntscr.com/g9xfmw –

+0

已经告诉你,你需要检查存在阵列存在的值或不否则它会通过一个例外。 –

+0

我编辑了答案尝试类似的东西。 –