0

I want to loop through nested object in Laravel and get values on blade file.

Sample object:

[
    {
        "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"
    }
]

Controller:

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'));
}

blade file:

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

I want to access old_values & new_values object

How to get these value in loop

Govind Samrow
  • 9,981
  • 13
  • 53
  • 90

1 Answers1

1

As I see your object sample old_values & new_values are single object not an array of objects so you can do it as following:

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

Note: if there is possibility of null or empty object then you need to added some check before accessing any property of object otherwise it'll through an exception.

Govind Samrow
  • 9,981
  • 13
  • 53
  • 90